1--TEST-- 2Testing function parameter passing with a return value 3--FILE-- 4<?php 5function test ($b) { 6 $b++; 7 return($b); 8} 9$a = test(1); 10echo $a; 11?> 12--EXPECT-- 132 14