gpt4 book ai didi

php - 如何在 php 中组合数组,以便第二个数组覆盖第一个?

转载 作者:可可西里 更新时间:2023-10-31 22:15:10 25 4
gpt4 key购买 nike

假设我有:

$arr1 = array('green', 'yellow', 'blue', 'red');
$arr2 = array('yellow', black, white, 'red');

如果我执行 array_merge($arr1, $arr2,) 这会给出:

array(green, yellow, blue, red, yellow, black, white, red);

我想确保数组中没有重复项,请注意我没有使用数组键,只使用值。

我还缺少另一个简单的解决方案吗?

最佳答案

array_unique( array_merge( $arr1, $arr2 ) );

关于php - 如何在 php 中组合数组,以便第二个数组覆盖第一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7028217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com