php-src/tests/lang/func_get_args.001.phpt

15 lines
134 B
Plaintext
Raw Normal View History

--TEST--
func_get_args with no args
--FILE--
<?php
function foo()
{
var_dump(func_get_args());
}
foo();
?>
--EXPECT--
array(0) {
}