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.
 
 
 
 
 
 

16 lines
234 B

--TEST--
func_get_arg on non-existent arg
--FILE--
<?php
function foo($a)
{
var_dump(func_get_arg(2));
}
foo(2, 3);
echo "\n";
?>
--EXPECTF--
Warning: func_get_arg(): Argument 2 not passed to function in %s on line %d
bool(false)