First of all do you've the same number of elements in both arrays?
If yes, then you can do the following:
$array1 = array(a1, a2, a3, a4);
$array2 = array(b1, b2, b3, b4);
$count_items = count($array1);
$new_var = "";
for($i=0; $i<$count_items; $i++) {
$new_var .= $array1[$i];
$new_var .= " ";
$new_var .= $array2[$i];
}
Hope this helps!!!