基于第一列值合并索引数组的两个索引数组

我有两个类似的数组:

$array1 = [
    [10, 'Some Name..'],
    [11, 'Some Name..'],
    [13, 'Some Name..'],
];

$array2 = [
    [13, 'Viewed']
];
如何在不循环的情况下合并这两个数组?有没有什么php功能可以用来做这件事呢?我需要这种输出:

[
    [10, 'Some Name..'],
    [11, 'Some Name..'],
    [13, 'Some Name..', 'Viewed']
]

php

可以使用推荐答案函数array_merge_recursive。 参见示例:

<?php
$ar1 = array("color" => array("favorite" => "red"), 5);
$ar2 = array(10, "color" => array("favorite" => "green", "blue"));
$result = array_merge_recursive($ar1, $ar2);
print_r($result);
?>

相关文章