敏感词搜索有关问题

WBOY
Release: 2016-06-13 13:32:07
Original
1042 people have browsed it

敏感词搜索问题
function transgress_keyword($content){ //定义处理违法关键字的方法  
  $keyword = array ('明日科技', '编程词典', '明日图书', '明日软件' ); //定义敏感词  
  $m = 0;  
  for($i = 0; $i   //应用substr_count检测文章的标题和内容中是否包含敏感词  
  if (substr_count ( $content, $keyword [$i] ) > 0) {  
  $m ++;  
  }  
  }  
  return $m; 
}
我从网上找到的敏感词检索代码,但是当我把$keyword = array ('明日科技', '编程词典', '明日图书', '明日软件' ) 替换成
$keyword = file("f:\\mgc\\test.txt");的时候 ,m就一直都是0了。请问这个是什么问题,路径和文件都是存在的
使用print_r也是可以输出 file("f:\\mgc\\test.txt")的。

------解决方案--------------------
FILE_IGNORE_NEW_LINES
Do not add newline at the end of each array element

加上这个选项。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template