PHP判断字符串中包含数组中的某个元素值并输出这个元素

  • A+
$arr=array('安卓','过滤','小程序');//如果是字符串,需要先打散成数组再判断
$str='安卓手机';
foreach($arr as $key){
if(strstr($str,$key)){//列表中包含过滤的新内容.如果str来自其它网页,需要保证编码相同.
echo  
$key,
0;exit;
        }else{
    echo  1;exit;
    }
    }

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: