summaryrefslogtreecommitdiff
path: root/tests/lang/func_get_args.001.phpt
blob: 740a0a216552e777040be83e5031cf6eea3497c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
func_get_args with no args
--FILE--
<?php

function foo()
{
	var_dump(func_get_args());	
}
foo();

?>
--EXPECT--
array(0) {
}