php add two arrays with same keys code example
Example 1: merge two arrays one as key to another php
// two arrays one become keys and second becomes values
array_combine ( array $keys , array $values );
Example 2: php array push one key multiple values
$temp['value']=array('key1'=>'value1','key2'=>'value2');