<?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']);
You have javascript disabled. You will not be able to edit any code.