[ create a new paste ] login | about

Link: http://codepad.org/GgTNBCPC    [ raw code | output | fork ]

balajimca - PHP, pasted on Nov 17:
1
2
3
4
5
6
7
<?php
//merge two arrays
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
print_r($result);
?>


Output:
1
2
3
4
5
6
7
8
9
10
Array
(
    [color] => green
    [0] => 2
    [1] => 4
    [2] => a
    [3] => b
    [shape] => trapezoid
    [4] => 4
)


Create a new paste based on this one


Comments: