php 传递可变数量的参数
…$str在PHP(包括Ruby在内的其他语言)中称为splat操作符。这个特性可以给一个函数传递可变数量的参数,也可以和“普通”参数一块传入。例如:
<?php
function concatenate($transform, ...$strings) {
$string = '';
foreach($strings as $piece) {
$string .= $piece;
}
return($transform($string));
}
echo concatenate("strtoupper", "I'm ", 20 + 2, " years", " old.");
输出
I'M 22 YEARS OLD.
新特性
PHP 5.5之后。使用…操作符,可以将数组和可遍历的对象,在调用函数时,解包到参数列表中。
<?php
function add($a, $b, $c) {
return $a + $b + $c;
}
$operators = [2, 3];
echo add(1, ...$operators);
?>
输出
6