<?php function method(?string ...$args) { var_dump($args); foreach ($args as $line) echo $line . PHP_EOL; } method('1', '2'); method('1'); method();
You have javascript disabled. You will not be able to edit any code.