搜尋
首页课程PHP趣味課堂函數傳回值

函數傳回值

目录列表

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

1/1