>  기사  >  백엔드 개발  >  PHP 민감한 단어 필터링 코드

PHP 민감한 단어 필터링 코드

WBOY
WBOY원래의
2016-07-25 08:42:341136검색
  1. $f = file('words.txt');
  2. $words = array();
  3. foreach ($f as $w) {
  4. $words[] = preg_quote(trim($w), '/');
  5. }
  6. $text = file_get_contents('text.txt');
  7. $start = microtime(true);
  8. $reg = '/' . implode('|', $words) . '/S';
  9. preg_match_all($reg, $text, $m);
  10. $result = array();
  11. $total = 0;
  12. foreach ($m[0] as $w) {
  13. if (!isset($result[$w])) {
  14. $result[$w] = 1;
  15. } else {
  16. $result[$w] ;
  17. }
  18. $total ;
  19. }
  20. $end = microtime(true);
  21. echo $end - $start, "n";
  22. echo $total, "n";
  23. print_r($result);
复制代码

PHP


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.