func_num_args()

//func_num_args() 这个函数返回的是当前函数的参数数量 返回的是数字
//func_get_arg()函数返回的是指定位置的参数的值
//func_get_args()这个函数返回的是包含当前函数所有参数的一个数组
//call_user_func_array()
//call_user_func()

  1 <?php
  2 function test(){
  3     echo func_num_args();
  4     print_r(func_get_args());
  5     echo func_get_arg(1);
  6 }
  7 echo test(1,2);
  8 ?>

    A+
发布日期:2021年07月24日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: