php数组查找关键函数
提供三种方法来判断一个字符串中是否包括我们定义好的词,这比较适合于在留言,评论等地址进行关键词过滤,实例代码如下:
- $crud = array('中国|||我国|||大地', 'kelon|||lerke|||sb', 'sesscxx');
- $crud = join('|',$crud);
- $crud = str_replace('|||', '|', $crud);
- $pat = "/({$crud})/i";
- $txt = '我知道中国你是sdfex谁!!';
- preg_match($pat, $txt, $matches);
- var_dump($matches);
方法二,代码如下:
- function checkcrud($str, $crud)
- {
- if(is_array($crud) && !emptyempty($crud))
- {
- foreach($crud as $value)
- {
- if(strpos($value, '|||') !== false)
- {
- $cruds = explode('|||', $value);
- $num = count($cruds);
- $check = 0;
- foreach($cruds as $val)
- {
- if(strpos($str, $val) !== false)
- {
- $check++;
- }
- }
- if($check == $num)
- {
- return true;
- }
- }
- else
- {
- if(strpos($str, $value) !== false)
- {
- return true;
- }
- }
- }
- return false;
- }
- }
- $crud = array('中国|||我国|||大地', 'kelon|||lerke|||ssxb', 'aaa');
- $test1 = '我是中国人.我国人很多.大地上全是人.-__-!!好xx的造句.';
-
- var_dump(checkcrud($test1, $crud));
方法三,代码如下:
- function lktest($v,$keyword){
- foreach ($v as $k){
- if (strpos($k,"|||")!==false){
- $kelon=explode("|||",$k);
-
- $b=count($kelon);
- foreach($kelon as $t){
-
- if (preg_match('/'.$t.'/i',$keyword)){
-
- $a=$a+1;
- }
- else{
- $a='';
- }
-
- }
-
- if ($a==$b){
- echo "敏感关键字";
- }
- }
- elseif(preg_match('/'.$k.'/i',$keyword)){
- echo "敏感关键字";
- }
- }
- }