blob: 0d97109dcc5939e2e800a1c5e796d10fc67307dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
func_num_args() outside of a function declaration
--FILE--
<?php
try {
func_num_args();
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
func_num_args() must be called from a function context
|