func_get_args.003.phpt 244 B

1234567891011121314
  1. --TEST--
  2. func_get_args() outside of a function declaration
  3. --FILE--
  4. <?php
  5. try {
  6. var_dump(func_get_args());
  7. } catch (\Error $e) {
  8. echo $e->getMessage() . \PHP_EOL;
  9. }
  10. ?>
  11. --EXPECT--
  12. func_get_args() cannot be called from the global scope