diff options
Diffstat (limited to 'tests/func/002.phpt')
-rw-r--r-- | tests/func/002.phpt | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/func/002.phpt b/tests/func/002.phpt deleted file mode 100644 index aa752ee13c..0000000000 --- a/tests/func/002.phpt +++ /dev/null @@ -1,22 +0,0 @@ ---TEST-- -Static variables in functions ---POST-- ---GET-- ---FILE-- -<?php -old_function blah ( - static $hey=0,$yo=0; - - echo "hey=".$hey++.", ",$yo--."\n"; -); - -blah(); -blah(); -blah(); -if (isset($hey) || isset($yo)) { - echo "Local variables became global :(\n"; -} ---EXPECT-- -hey=0, 0 -hey=1, -1 -hey=2, -2 |