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.
 
 
 
 
 
 

23 lines
399 B

--TEST--
func_get_arg test
--FILE--
<?php
function foo($a)
{
$a=5;
echo func_get_arg();
echo func_get_arg(2,2);
echo func_get_arg("hello");
echo func_get_arg(-1);
echo func_get_arg(2);
}
foo(2);
echo "\n";
?>
--EXPECTF--
2
Warning: func_get_arg(): The argument number should be >= 0 in %s on line %d
Warning: func_get_arg(): Argument 2 not passed to function in %s on line %d