首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

PHP 搜寻分词

2012-10-29 
PHP 搜索分词1. 简单的英文分词?php$search this is a testing$words explode( , $search)$len

PHP 搜索分词
1. 简单的英文分词

<?php        $search = 'this is a testing';      $words = explode(' ', $search);         $length = count($words);      for($i = 0; $i < $length; $i++) echo $words[$i].'<br />';  ?>    


2. 简单的中英文分词

来源 1 :http://bbs.phpchina.com/forum.php?mod=viewthread&tid=61831
来源 2 :提取dede分词算法的一个类 http://helion.name/archives/127.html

见附件

热点排行