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

22 lines
210 B
Plaintext
Raw Normal View History

--TEST--
func_get_args with variable number of args
--FILE--
<?php
function foo($a)
{
2018-09-16 17:16:42 +00:00
var_dump(func_get_args());
}
foo(1, 2, 3);
?>
--EXPECT--
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}