Arquivos
hhvm/hphp/test/quick/func_get_args_namespace.php.expect
T
Eric Caruso 6eba57f898 Make func_get_args and friends work with namespaces
func_get_args would only return declared parameters
when used inside of namespaces. This allows it to work correctly
in that case.

Closes #832
2013-07-06 11:12:23 -07:00

14 linhas
105 B
Plaintext

int(5)
array(5) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
[3]=>
int(4)
[4]=>
int(5)
}