gpt4 book ai didi

php - 如何检查项目数组是否仅包含此项?

转载 作者:行者123 更新时间:2023-12-01 15:32:40 26 4
gpt4 key购买 nike

$items1 = ['apple', 'tree', 'juice'];
$items2 = ['apple', 'tree'];
$items3 = ['apple'];

// loop
If ($items[i].containsOnly['apple'])
{
// do something..
}

在上面的简化示例中,我想获取与给定项目匹配的数组。是否有类似于“containsOnly”的可用方法?或者最好的方法是什么?

最佳答案

//If the array has the only item present    
if(in_array('apple',$item) && count($item)==1)
{
//Do Something
}

关于php - 如何检查项目数组是否仅包含此项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55218373/

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