mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
55a3e5b99e
Closes GH-5325
15 lines
255 B
PHP
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
|