mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
29 lines
466 B
PHP
29 lines
466 B
PHP
--TEST--
|
|
Static variable with recursive initializer
|
|
--FILE--
|
|
<?php
|
|
|
|
function foo($i) {
|
|
static $a = $i <= 10 ? foo($i + 1) : "Done $i";
|
|
var_dump($a);
|
|
return $i;
|
|
}
|
|
|
|
foo(0);
|
|
foo(5);
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|
|
string(7) "Done 11"
|