gpt4 book ai didi

php - 如何检查不在数组元素中

转载 作者:IT王子 更新时间:2023-10-29 01:04:04 27 4
gpt4 key购买 nike

我正在尝试检查一个元素是否不在数组中而不是想要重定向页面:我的代码如下:

$id = $access_data['Privilege']['id']; 

if(!in_array($id,$user_access_arr))
{
$this->Session->setFlash(__('Access Denied! You are not eligible to access this.'), 'flash_custom_success');
return $this->redirect(array('controller'=>'Dashboard','action'=>'index'));
}

我很困惑如何检查元素是否不在数组中。因为我们可以使用 PHP 的 in_array 函数检查元素是否存在于数组中。我正在尝试使用 (!in_array) 进行检查,但没有得到结果。

最佳答案

简单

$os = array("Mac", "NT", "Irix", "Linux");
if (!in_array("BB", $os)) {
echo "BB is not found";
}

关于php - 如何检查不在数组元素中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22316925/

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