php push to array and join code example
Example 1: php combine arrays
$output = array_merge($array1, $array2);
Example 2: merge two arrays one as key to another php
// two arrays one become keys and second becomes values
array_combine ( array $keys , array $values );