func_get_arg.003.phpt 240 B

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