php-src/tests/lang/func_get_arg.004.phpt
2020-07-21 14:47:03 +02:00

19 lines
352 B
PHP

--TEST--
func_get_arg on non-existent arg
--FILE--
<?php
function foo($a)
{
try {
var_dump(func_get_arg(2));
} catch (\Error $e) {
echo $e->getMessage() . \PHP_EOL;
}
}
foo(2, 3);
?>
--EXPECT--
func_get_arg(): Argument #1 ($position) must be less than the number of the arguments passed to the currently executed function