<?php $a = ['a', 'b', 'c']; $b = [ 23 => 'x', 'y', 'z' ]; $c = array_merge($a, $b); $d = $a + $b; print_r(compact('a', 'b', 'c', 'd')); $a = ['a' => 'a', 'b' => 'b', 'c' => 'c']; $b = [ 23 => 'x', 'y', 'z' ]; $c = array_merge($a, $b); $d = $a + $b; print_r(compact('a', 'b', 'c', 'd'));
You have javascript disabled. You will not be able to edit any code.