>  기사  >  php教程  >  PHP 민감한 단어 필터링은 타사 확장 trie_filter를 사용합니다.

PHP 민감한 단어 필터링은 타사 확장 trie_filter를 사용합니다.

黄舟
黄舟원래의
2017-03-22 14:29:093371검색

ubuntu 14.04 설치

libdatrie 설치

// 
sudo apt-get install libdatrie-dev

trie_filter 확장 설치

> git clone  
> cd php-ext-trie-filter
> phpize
> ./configure --with-php-config=/usr/bin/php-config
> make
> make install//添加php扩展,extension=trie_filter.so
> service php5-fpm  restart
> php5-fpm -m //查看

를 사용하여 생성 민감한 동의어 사전

 $arrWord = array('word1', 'word2', 'word3');  
 $resTrie = trie_filter_new(); //create an empty trie tree
  foreach ($arrWord as $k => $v) {
      trie_filter_store($resTrie, $v);
  }
  trie_filter_save($resTrie, __DIR__ . '/blackword.tree');
  trie_filter_free($resTrie);

$resTrie = trie_filter_load(__DIR__ . '/blackword.tree');    
$strContent = 'hello word2 word1';    
$arrRet = trie_filter_search($resTrie, $strContent);
    print_r($arrRet); //Array(0 => 6, 1 => 5)
    echo substr($strContent, $arrRet[0], $arrRet[1]); //word2
    $arrRet = trie_filter_search_all($resTrie, $strContent);
    print_r($arrRet); //Array(0 => Array(0 => 6, 1 => 5), 1 => Array(0 => 12, 1 => 5))
    foreach ($arrRet as $item) {        echo substr($strContent, $item[0], $item[1]); //word2 word1
    }    $arrRet = trie_filter_search($resTrie, 'hello word');
    print_r($arrRet); //Array()

    trie_filter_free($resTrie);

을 사용합니다. 위는 PHP 민감 단어 필터링을 위해 타사 확장인 trie_filter를 사용하는 내용입니다. 더 많은 관련 내용을 보려면 PHP를 참고하세요. 중국사이트(www.php.cn)!

관련 기사:

효율적인 민감한 단어 필터링 방법(PHP)

PHP 확장 trie_filter를 사용하여 중국어 감도 수행 단어 필터링

PHP는 메시지 메시지에서 민감한 단어 필터링을 구현합니다

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