Result Size:
625 x 571
tryphp_func_array_merge3.php:
<!DOCTYPE html> <html> <body> <?php $a=array(3=>"red",4=>"green"); print_r(array_merge($a)); ?> </body> </html>
Array ( [0] => red [1] => green )