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
见附件
Statement: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