duanchouyi6730 2016-12-17 20:57
浏览 76
已采纳

如果两个数组中的任何元素匹配,则返回true? [重复]

This question already has an answer here:

I've two arrays, one is my define array and another I process from the database. Is there any proper way to compare between those arrays?

From database:

$user_type = [0 => "public" 1 => "10x413" 2 => "12x432"]

Defined array:

$specificUser = ['10x410','10x411','10x412','10x413','10x414'] 

If any element matches, then return true, just like php in_array() function.

</div>
  • 写回答

2条回答 默认 最新

  • doulu8415 2016-12-17 21:09
    关注

    Just loop and check as you would using in_array() to get the value that matches:

    foreach($specificUser as $value) {
        if(in_array($value, $user_type)) {
            echo $value;
            //break; to stop checking, a match was found, or not to continue and see more
        }
    }
    

    Or to just test for any match:

    if(array_intersect($specificUser, $user_type)) {
        // it's true :-)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥30 在CodBlock上用c++语言运行
  • ¥15 求C6748 IIC EEPROM程序固化烧写算法
  • ¥50 关于#php#的问题,请各位专家解答!
  • ¥15 python 3.8.0版本,安装官方库ibm_db遇到问题,提示找不到ibm_db模块。如何解决?
  • ¥15 TMUXHS4412如何防止静电,
  • ¥30 Metashape软件中如何将建模后的图像中的植被与庄稼点云删除
  • ¥20 机械振动学课后习题求解答
  • ¥15 IEC61850 客户端和服务端的通讯机制
  • ¥15 MAX98357a(关键词-播放音频)
  • ¥15 Linux误删文件,请求帮助
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部