summaryrefslogtreecommitdiff
path: root/tests/lang/010.phpt
blob: 03def4b112ffc8587693cbdebbcd91720c9a329b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Testing function parameter passing with a return value
--POST--
--GET--
--FILE--
<?php  old_function Test $b (
		$b++;
		return($b);
	);
	$a = Test(1);
	echo $a?>
--EXPECT--
2