3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ex = [ 'goo' => [ 1, 2 ], 'asdads' => [ 3, 4 ] ]; $test = array_reduce($ex, function ($a, $b) { if (null === $a) { $a = []; } call_user_func_array('array_push', $b); return $a; }); var_dump($test);

preferences:
39.91 ms | 406 KiB | 5 Q