3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test(...$args) { var_dump($args); } test(1, 2, 3); // [1, 2, 3] test(...[1, 2, 3]); // [1, 2, 3] test(...new Exception()); // [1, 2, 3]

preferences:
42.63 ms | 402 KiB | 5 Q