diff options
Diffstat (limited to 'tests/lang/007.phpt')
-rw-r--r-- | tests/lang/007.phpt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/lang/007.phpt b/tests/lang/007.phpt index 946ae9babb..735de94974 100644 --- a/tests/lang/007.phpt +++ b/tests/lang/007.phpt @@ -7,14 +7,14 @@ $a = 10; function Test() { - static $a=1; - global $b; - $c = 1; - $b = 5; - echo "$a $b "; - $a++; - $c++; - echo "$a $c "; + static $a=1; + global $b; + $c = 1; + $b = 5; + echo "$a $b "; + $a++; + $c++; + echo "$a $c "; } Test(); |