15 lines
255 B
Plaintext
15 lines
255 B
Plaintext
|
|
--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
|