summaryrefslogtreecommitdiff
path: root/tests/func/002.phpt
blob: 84e00eeeb5464fa6631d78ac8c42b1b55f255279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Static variables in functions
--SKIPIF--
<?php if(version_compare(zend_version(), "2.0.0-dev", '>=')) echo "skip removed in Zend Engine 2\n"; ?>
--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