<?php$a = [[1,2,3]];$b = [];$c = [[7,8,9]]; print_r( array_merge($a,$b,$c));
Standard input is empty
Array ( [0] => Array ( [0] => 1 [1] => 2 [2] => 3 ) [1] => Array ( [0] => 7 [1] => 8 [2] => 9 ) )
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!