Merge two arrays into one array

suggest change
$a1 = array("red","green");
$a2 = array("blue","yellow");
print_r(array_merge($a1,$a2));

/*
    Array ( [0] => red [1] => green [2] => blue [3] => yellow )
*/

Associative array:

$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
print_r(array_merge($a1,$a2));
/*
    Array ( [a] => red [b] => yellow [c] => blue )
*/
  1. Merges the elements of one or more arrays together so that the values of one are appended to the end of the previous one. It returns the resulting array.
  2. If the input arrays have the same string keys, then the later value for that key will overwrite the previous one. If, however, the arrays contain numeric keys, the later value will not overwrite the original value, but will be appended.
  3. Values in the input array with numeric keys will be renumbered with incrementing keys starting from zero in the result array.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Manipulating an array:
* Merge two arrays into one array

Table Of Contents
2 Arrays
4 Types
10 Cookies
14 JSON
15 SOAP
17 cURL
19 XML
21 Traits
35 UTF-8
36 URLs
38 PHPDoc
41 Loops
44 Closur
72 YAML
77 Cache
78 Streams
81 PDO
82 SQLite3
83 Sockets
87 MongoDB
88 Manipulating an array
93 IMAP
94 Redis
95 Imagick
102 APCu
108 PSR