### 一、函数说明 - func_get_args():返回一个包含函数参数列表的数组。 - func_get_arg():返回指定的参数值。 - func_num_args():返回调用函数的传入参数个数,类型是整型。 ### 二、使用示例 class test{ public function hello($a,$b,$c,$d){ $num=func_num_args(); echo "方法参数的个数为:".$num,""; if(2<=$num){ echo "方法的第三个参数为:".func_get_arg(2).""; } $num2=func_get_args(); for($i=0;$i<$num;$i++){ echo "第{$i}个参数为{$num2[$i]}".""; } } } $T=new test(); $T->hello('A','B','C','D'); 注:从这个小实例中不难看出func_get_args,func_get_arg,func_num_args三个函数之间的关系。 输出结果: 方法参数的个数为:4 方法的第三个参数为:C 第0个参数为A 第1个参数为B 第2个参数为C 第3个参数为D