1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/lang/010.phpt
2004-05-19 08:45:46 +00:00

14 lines
161 B
PHP

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