| Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/lang/009.phpt |
--TEST--
Testing function parameter passing
--FILE--
<?php
function test ($a,$b) {
echo $a+$b;
}
test(1,2);
?>
--EXPECT--
3