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