1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 11:42:17 +02:00
Files
archived-php-src/tests/lang/009.phpt
2018-10-14 12:07:20 -03:00

12 lines
125 B
PHP

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