闲者博客 - 关键词 https://bk1314.com/tag/%E5%85%B3%E9%94%AE%E8%AF%8D/ zh-CN Sat, 26 Feb 2022 17:36:47 +0800 Sat, 26 Feb 2022 17:36:47 +0800 PHP循环遇到关键词就跳过分享 https://bk1314.com/46.html https://bk1314.com/46.html Sat, 26 Feb 2022 17:36:47 +0800 飞鱼 $keyword_arr=['词1','词2','词3']; //也可以上面数据库存入 function checKeyword($str='',$keyword_arr=[]){ foreach ($keyword_arr as $keyword) { //var_dump($keyword); if (strstr($str, $keyword) != FALSE)return true; } return false; } while($r = mysql_fetch_array($query)){ $bt=$r['ybt'];//标题 $strtolowerbt=strtolower($bt); if(checKeyword($strtolowerbt,$keyword_arr)) { continue; } } ]]> 0 https://bk1314.com/46.html#comments https://bk1314.com/feed/tag/%E5%85%B3%E9%94%AE%E8%AF%8D/