php-8.0.30-src/Zend/tests/func_get_args.phpt

15 lines
255 B
PHP

--TEST--
Testing func_get_args() throws error when called from the global scope
--FILE--
<?php
try {
func_get_args();
} catch (\Error $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
func_get_args() cannot be called from the global scope