mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
55a3e5b99e
Closes GH-5325
19 lines
274 B
PHP
19 lines
274 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 2 not passed to function
|