php-src/tests/lang/010.phpt
2002-03-29 17:12:11 +00:00

16 lines
178 B
PHP

--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