我有3个阵列:
$array1 = array (1 => Hello , 2 => nice 3 => how );
$array2 = array (1 => there , 2 => to 3 => are );
$array3 = array (1 => champ , 2 => meet 3 => you );
and i want to output a string that combines let s say from all the first keys of each array. e.g:
echo "Hello there champ"
echo "nice to meet"
How can i do that? The number of values in those arrays will always be identical since these are pulled from a table.
提前感谢。