php-src/tests/lang/func_get_args.003.phpt
2020-03-31 16:32:58 +02:00

15 lines
244 B
PHP

--TEST--
func_get_args() outside of a function declaration
--FILE--
<?php
try {
var_dump(func_get_args());
} catch (\Error $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
func_get_args() cannot be called from the global scope