Answer the question
In order to leave comments, you need to log in
Comparing two arrays and inserting. Is there a better way?
$arr = [
0 => [
"Alex","12"
],
1 => [
"Jon","17"
],
2 => [
"Mary","27"
]
];
$arr2 = [
0 => [
"Alex","some"
],
1 => [
"Jon","words"
],
2 => [
"Mary","any"
]
];
foreach($arr as $Full)
{
foreach($arr2 as $End)
{
if($Full[0] == $End[0])
{
array_splice( $Full, 1, 0, "$End[1]" );
break;
}
}
$done = implode(",",$Full);
$done .= "\n";
echo $done;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question