<?php function foo(...$args) { var_dump($args); } foo(...[1, 2, 3]); foo(...[1, 2, 3], ...[4]); foo(...[1, 2, 3], 4);
You have javascript disabled. You will not be able to edit any code.