php-src/tests/lang/static_basic_001.phpt
Peter Kokot d679f02295 Sync leading and final newlines in *.phpt sections
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines in all
*.phpt sections.

According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.

C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."

Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
2018-10-15 04:33:09 +02:00

84 lines
1.5 KiB
PHP

--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