3v4l.org

run code in 300+ PHP versions simultaneously
<?php function push_to_array(&...$params): void { array_push(...$params); } $array = ['once', 'two', 'three']; $new = ['foo', 'bar']; push_to_array($array, ...$new); var_export($array);

preferences:
44.99 ms | 852 KiB | 5 Q