summaryrefslogtreecommitdiff
path: root/tests/lang/func_get_arg.001.phpt
blob: 00315b0ee09c75b746ef28f5a62ab1e99b3f429e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
func_get_arg test (PHP7)
--FILE--
<?php

function foo($a)
{
   $a=5;
   echo func_get_arg(0);
}
foo(2);
echo "\n";
?>
--EXPECT--
5