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

2022-08-30 12:21:40

嘿,我正在使用一个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 中的参数数组。


答案 1

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


答案 2

如果您使用 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