3v4l.org

run code in 300+ PHP versions simultaneously
<?php function merge(mixed $one, mixed $two): array { return array_merge($one, $two); } function spread(mixed $one, mixed $two): array { return [...$one, ...$two]; } spread(null, ['foo']); //merge(null, ['foo']);

preferences:
26.21 ms | 404 KiB | 5 Q