mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
20 lines
213 B
PHP
20 lines
213 B
PHP
--TEST--
|
|
func_get_arg with variable number of args
|
|
--FILE--
|
|
<?php
|
|
|
|
function foo($a)
|
|
{
|
|
$b = func_get_arg(1);
|
|
var_dump($b);
|
|
$b++;
|
|
var_dump(func_get_arg(1));
|
|
|
|
}
|
|
foo(2, 3);
|
|
echo "\n";
|
|
?>
|
|
--EXPECT--
|
|
int(3)
|
|
int(3)
|