将数组传递给php中的varargs函数

前端之家收集整理的这篇文章主要介绍了将数组传递给php中的varargs函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个在 PHP 7中定义的varargs类型方法
function selectAll(string $sql,...$params) { }

我遇到的问题是,当我已经有一个数组时,有时我想调用这个方法,我不能直接将数组变量传递给这个方法.

使用splat运算符解压缩数组参数,就像在函数中使用一样:
selectAll($str,...$arr);

像这样:

function selectAll(string $sql,...$params) { 
    print_r(func_get_args());
}

$str = "This is a string";
$arr = ["First Element","Second Element",3];

selectAll($str,...$arr);

打印:

Array
(
    [0] => This is a string
    [1] => First Element
    [2] => Second Element
    [3] => 3
)

Eval为此.

如果您不在参数中使用splat运算符,则最终将结束like this

原文链接:https://www.f2er.com/php/240062.html

猜你在找的PHP相关文章