mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
12 lines
126 B
PHP
12 lines
126 B
PHP
--TEST--
|
|
Testing function parameter passing
|
|
--FILE--
|
|
<?php
|
|
function test ($a,$b) {
|
|
echo $a+$b;
|
|
}
|
|
test(1,2);
|
|
?>
|
|
--EXPECT--
|
|
3
|