您的位置:首页 > 技术中心 > PHP教程 >

php 不定参数如何传递

时间:2020-09-29 09:41

php不定参数传递的方法:可以使用函数【func_get_args】实现,代码为【$args = func_get_args();for($i=0;$i<func_num_args();$i++) $a = $i +1;】。

php不定参数传递的方法:

函数func_get_argsfunc_num_args可以实现

  1. <?php
  2. function more_args(){
  3. $args = func_get_args();
  4. for($i=0;$i<func_num_args();$i++){
  5. $a = $i +1;
  6. echo "第".$a."个参数是".$args[$i]."<br>";
  7. }
  8. }
  9. more_args('a','b','c','d','e','f');
  10. ?>

想了解更多编程学习,敬请关注php培训栏目!

以上就是php 不定参数如何传递的详细内容,更多请关注www.gxlsystem.com其它相关文章!

本类排行

今日推荐

热门手游