You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
232 B

--TEST--
Testing nested functions
--POST--
--GET--
--FILE--
<?php
function F()
{
$a = "Hello ";
return($a);
}
function G()
{
static $myvar = 4;
echo "$myvar ";
echo F();
echo "$myvar";
}
G();
?>
--EXPECT--
4 Hello 4