function test(){
}
test(58,1,"world","hello");
如何使用此参数test()函数参数。
答案 0 :(得分:4)
<?php
function test(){
print_r(func_get_args());
}
test(58,1,"world","hello");
输出:
Array
(
[0] => 58
[1] => 1
[2] => world
[3] => hello
)