php-src/Zend/tests/static_variable_in_dynamic_function_2.phpt

22 lines
278 B
Plaintext
Raw Normal View History

--TEST--
Static variables in dynamically declared function (first use after dynamic def dtor)
--FILE--
<?php
$code = <<<'CODE'
if (1) {
function test() {
static $x = 0;
var_dump(++$x);
}
}
CODE;
eval($code);
test();
test();
?>
--EXPECT--
int(1)
int(2)