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

14 lines
143 B
PHP

--TEST--
Testing function parameter passing
--POST--
--GET--
--FILE--
<?php
function test ($a,$b) {
echo $a+$b;
}
test(1,2);
?>
--EXPECT--
3