1--TEST-- 2Testing function parameter passing 3--FILE-- 4<?php 5function test ($a,$b) { 6 echo $a+$b; 7} 8test(1,2); 9?> 10--EXPECT-- 113 12