blob: 44406db179d417cb42d530f26fef1963e8057391 [file]
<?php
function add($a, $b, $c) {
return $a + $b + $c;
}
$operators = [2, 3];
echo add(1, ...$operators);
?>