PHP函数可变参数列表的具体实现方法介绍

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

也许对于PHP初级程序员来说,对于PHP函数并不能完全熟练的掌握。我们今天为大家介绍的PHP函数可变参数列表的实现方法主要是利用func_get_args()、 func_num_args()、func_get_arg()这三个系统函数来实现的,其中func_get_args()函数以数组的形式获得参数列表,具体用法参看手册。

PHP函数可变参数列表代码如下:
        /** 
    * 函数的多参数列表的实现 
    * 
    */ 
    function multiArgs() 
    { 
       /** 以数组的形式返回参数列表 */ 
       $args = func_get_args(); 
       /** 参数的个数 */ 
       $args_num = func_num_args(); 
       foreach ( $args as $key => $value ) 
       { 
           echo 'This is ',$key+1,'th argument:',$value,'
'; 
       } 
           echo 'Number of args is ',$args_num; 
   } 
   multiArgs('one','two','three'); 
   /** output */ 
   /** 
   This is 1th argument:one 
   This is 2th argument:two 
   This is 3th argument:three 
   Number of args is 3 
   */ 
   ?> 

转载于:https://my.oschina.net/miaoyushun/blog/13633

你可能感兴趣的:(PHP函数可变参数列表的具体实现方法介绍)