Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/lang/010.phpt

--TEST--
Testing function parameter passing with a return value
--FILE--
<?php
function test ($b) {
	$b++;
	return($b);
}
$a = test(1);
echo $a;
?>
--EXPECT--
2