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.
 
 
 
 
 
 

19 lines
213 B

--TEST--
func_get_arg with variable number of args
--FILE--
<?php
function foo($a)
{
$b = func_get_arg(1);
var_dump($b);
$b++;
var_dump(func_get_arg(1));
}
foo(2, 3);
echo "\n";
?>
--EXPECT--
int(3)
int(3)