php不定參數傳遞的方法:可以使用函數【func_get_args】實現,程式碼為【$args = func_get_args();for($i=0;$i
php不定參數傳遞的方法:
函數func_get_args
,func_num_args
可以實現
<?php function more_args(){ $args = func_get_args(); for($i=0;$i<func_num_args();$i++){ $a = $i +1; echo "第".$a."个参数是".$args[$i]."<br>"; } } more_args('a','b','c','d','e','f'); ?>
#想了解更多程式設計學習,請關注php培訓欄位!
以上是php 不定參數如何傳遞的詳細內容。更多資訊請關注PHP中文網其他相關文章!