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

20 lines
224 B
Plaintext
Raw Normal View History

--TEST--
func_get_arg with variable number of args
--FILE--
<?php
function foo($a)
{
2020-02-03 21:52:20 +00:00
$b = func_get_arg(1);
var_dump($b);
$b++;
var_dump(func_get_arg(1));
2018-09-16 17:16:42 +00:00
}
foo(2, 3);
echo "\n";
?>
--EXPECT--
int(3)
int(3)