PHP将所有参数作为数组获取?

时间:2009-05-06 08:59:38

标签: php arrays function arguments

嘿,我正在使用PHP函数,它接受多个参数并格式化它们。目前,我正在使用这样的东西:

function foo($a1 = null, $a2 = null, $a3 = null, $a4 = null){
    if ($a1 !== null) doSomethingWith($a1, 1);
    if ($a2 !== null) doSomethingWith($a2, 2);
    if ($a3 !== null) doSomethingWith($a3, 3);
    if ($a4 !== null) doSomethingWith($a4, 4);
}

但我想知道我是否可以使用这样的解决方案:

function foo(params $args){
    for ($i = 0; $i < count($args); $i++)
        doSomethingWith($args[$i], $i + 1);
}

但是仍然以相同的方式调用函数,类似于C#中的params关键字或JavaScript中的arguments数组。

2 个答案:

答案 0 :(得分:70)

func_get_args返回一个包含当前函数的所有参数的数组。

答案 1 :(得分:9)

如果您使用PHP 5.6+,现在可以执行此操作:

<?php
function sum(...$numbers) {
    $acc = 0;
    foreach ($numbers as $n) {
        $acc += $n;
    }
    return $acc;
}

echo sum(1, 2, 3, 4);
?>

来源:http://php.net/manual/en/functions.arguments.php#functions.variable-arg-list