| Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/lang/func_get_arg.001.phpt |
--TEST--
func_get_arg test
--FILE--
<?php
function foo($a)
{
$a=5;
echo func_get_arg(0);
}
foo(2);
echo "\n";
?>
--EXPECT--
2