mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
11 lines
126 B
PHP
11 lines
126 B
PHP
--TEST--
|
|
Testing function parameter passing
|
|
--FILE--
|
|
<?php
|
|
function test ($a,$b) {
|
|
echo $a+$b;
|
|
}
|
|
test(1,2);
|
|
?>
|
|
--EXPECT--
|
|
3
|