php-src/Zend/tests/static_variable_func_call.phpt
2023-05-24 20:17:31 +02:00

23 lines
253 B
PHP

--TEST--
Static variable initializer with function call
--FILE--
<?php
function bar() {
echo "bar() called\n";
return 'bar';
}
function foo() {
static $bar = bar();
echo $bar, "\n";
}
foo();
foo();
?>
--EXPECT--
bar() called
bar
bar