如何获得没有参数限制的无限参数

时间:2016-05-09 05:20:31

标签: php

   function test(){

   }
 test(58,1,"world","hello");

如何使用此参数test()函数参数。

1 个答案:

答案 0 :(得分:4)

使用func_get_args()

<?php

function test(){
  print_r(func_get_args());
}
test(58,1,"world","hello");

输出:

Array
(
    [0] => 58
    [1] => 1
    [2] => world
    [3] => hello
)