mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
24 lines
215 B
Plaintext
24 lines
215 B
Plaintext
|
--TEST--
|
||
|
Testing nested functions
|
||
|
--FILE--
|
||
|
<?php
|
||
|
function F()
|
||
|
{
|
||
|
$a = "Hello ";
|
||
|
return($a);
|
||
|
}
|
||
|
|
||
|
function G()
|
||
|
{
|
||
|
static $myvar = 4;
|
||
|
|
||
|
echo "$myvar ";
|
||
|
echo F();
|
||
|
echo "$myvar";
|
||
|
}
|
||
|
|
||
|
G();
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
4 Hello 4
|