検索
首页课程PHPの楽しいクラス関数の戻り値

関数の戻り値

目录列表

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

1/1