PHP func_num_args()函數介紹及使用樣本

來源:互聯網
上載者:User
func_num_args():返回調用函數的傳入參數個數,類型是整型。

該功能可以配合使用func_get_arg()和func_get_args()允許使用者自訂函數接收可變長度參數列表。

傳回值

返回目前使用者定義的 傳入函數的參數的數量。

使用樣本:

function foo(){   $numargs = func_num_args();//返回這個函數所含的參數   echo "Num fo argumets : $numargs <br>\n";   $arr=func_get_args();//返回一個數組給$arr   print_r($arr);//輸出這個數組所有的參數   echo "<hr>";   for($i=0;$i<=$numargs;$i++)   {       echo $arr[$i]."<br>";   }}foo(1,2,3,45,6);

運行結果如下:

Num fo argumets : 5Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 45 [4] => 6 )--------------------------------------------------------------------------------123456

樣本2:

<?phpfunction foo() {    include './fna.php';}foo('First arg', 'Second arg');?>fna.php<?php$num_args = func_num_args();var_export($num_args);?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.