summaryrefslogtreecommitdiff
path: root/tests/lang/func_get_args.001.phpt
blob: 40083aeb37f01b3afa5d7a118bb151e2934f6587 (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) {
}