比较两个数字数组并在PHP中删除重复项

发布于 2024-09-28 08:43:51 字数 151 浏览 3 评论 0原文

好的,我有两组手机号码(来自 mysql),我需要处理它们,问题是我需要从结果中删除重复的号码。

有人告诉我有关“array_intersect”的信息,但我不太擅长这些事情,而且我在 PHP 网站上没有看到任何好的示例。

任何帮助或建议表示感谢,谢谢:)

OK i have two groups of mobile numbers (from mysql) which i need to process, the problem is i need to remove duplicate numbers from the results.

Someone told me about "array_intersect" but I am not very good at these things and I don't see any good examples on the PHP website.

Any help or suggestions is appreciated thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

淡紫姑娘! 2024-10-05 08:43:51

array_intersect 不太正确 - 它查找两个数组中都存在的数字

$uniques = array_unique(array_merge($array1, $array2));

这会将两个数组合并在一起,然后过滤掉所有唯一结果(使用 array_unique

array_intersect isn't quite right — that finds numbers that are in both arrays

$uniques = array_unique(array_merge($array1, $array2));

This merges the two arrays together and then filters out all the unique results (with array_unique)

尹雨沫 2024-10-05 08:43:51

使用 array_unique 函数。

$myArray = array(1, 1, 2, 3, 3, 5);
$myArray2 = array_unique($myArray);

http://php.net/manual/en/function.array-unique.php

Use the array_unique function.

$myArray = array(1, 1, 2, 3, 3, 5);
$myArray2 = array_unique($myArray);

http://php.net/manual/en/function.array-unique.php

感受沵的脚步 2024-10-05 08:43:51

将两个列表放入一个数组中,然后通过 array_unique() 运行它

Put both lists into one array and then run it through array_unique()
.

时光倒影 2024-10-05 08:43:51

正如您写的有关使用 MySQL 的文章,最好尝试使用类似

SELECT DISTINCT phone_number FROM table

With DISTINCT 结果集中的每一行都是唯一的。

As you wrote about using MySQL, better try using something like

SELECT DISTINCT phone_number FROM table

With DISTINCT each row in the resultset will be unique.

待"谢繁草 2024-10-05 08:43:51

使用 array_unique 函数。这是一个例子:

$start = array(1,2,3,3,4,4,4,5);
$unique_result = array_unique($start);

Use the array_unique function. Here is an example:

$start = array(1,2,3,3,4,4,4,5);
$unique_result = array_unique($start);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文