PHP开发实例大全(提高卷) 中文完整pdf扫描版[244MB]
- <?php
- /*
- word.txt
- 中国
- 测试
- */
- //我们这里简化一下
- header("Content-type:text/html;charset=utf-8");
- $file = "./word.txt";
- $badword = file_get_contents($file); //该文本中为敏感词汇,共有将近4000个
- $hei = explode("\n",$badword);
- print_r($hei);
- $blacklist="/".implode("|",$hei)."/i";
- $str="一是一个很好的国家挫仑";
- if(preg_match($blacklist, $str, $matches)){
- print "found:". $matches[0];
- } else {
- print "not found.";
- }
转载请注明:谷谷点程序 » php敏感词过滤的简单实现方法