gpt4 book ai didi

php - 检查数组中的任何值是否彼此相等

转载 作者:可可西里 更新时间:2023-11-01 00:47:49 27 4
gpt4 key购买 nike

我正在验证一个表单,该表单最多可提交 3 个不同的 ID,具体取决于用户的选择。

我把它们放到一个数组中:

$submitted_genres = array($_POST['genre1'], $_POST['genre2'], $_POST['genre3']);

我如何检查以确保没有数组值彼此相等?

最佳答案

您可以使用 array_unique() 获取所有唯一值的数组,然后将大小与原始数组进行比较:

if (count(array_unique($submitted_genres)) !== count($submitted_genres)) {
// there's at least one dupe
}

关于php - 检查数组中的任何值是否彼此相等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13983363/

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