--TEST-- func_get_arg test --FILE-- getMessage() . \PHP_EOL; } try { echo func_get_arg(2); } catch (\Error $e) { echo $e->getMessage() . \PHP_EOL; } } foo(2); ?> --EXPECT-- func_get_arg(): Argument #1 ($position) must be greater than or equal to 0 func_get_arg(): Argument #1 ($position) must be less than the number of the arguments passed to the currently executed function