1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 20:41:18 +02:00
Files
archived-php-src/tests/lang/func_get_arg.001.phpt
2014-12-21 13:23:02 +00:00

16 lines
140 B
PHP

--TEST--
func_get_arg test (PHP7)
--FILE--
<?php
function foo($a)
{
$a=5;
echo func_get_arg(0);
}
foo(2);
echo "\n";
?>
--EXPECT--
5