[ create a new paste ] login | about

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

PHP, pasted on Sep 12:
1
2
3
4
5
6
7
<?php


$a = Array('a'=>'orange');
$b = Array('b'=>'apple');

print_r( array_merge($a,$b) );


Output:
1
2
3
4
5
Array
(
    [a] => orange
    [b] => apple
)


Create a new paste based on this one


Comments: