首页课程PHP趣味课堂函数返回值

函数返回值

目录列表

下面代码会打印出什么结果? <?php function test($a,$b = 8){ $add = $a + $b; return $add; echo $add + 2; } test(2,5);

1/1