1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/Zend/tests/static_variable_func_call.phpt
2023-05-24 20:17:31 +02:00

24 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