PHP 字符串提取关键字的方法

这是一个函数定位接收一个字符串作为参数(连同其他配置可选参数),并且定位该字符串中的所有关键字(出现最多的词),返回一个数组或一个字符串由逗号分隔的关键字。功能正常工作,但我正在改进,因此,有任何的建议请评论PHP从一个文本字符串中提取关键字的方法,感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

/**
 * PHP 字符串提取关键字
 *
 * @param 
 * @author 编程之家 jb51.cc jb51.cc
 * Finds all of the keywords (words that appear most) on param $str 
 * and return them in order of most occurrences to less occurrences.
 * @param string $str The string to search for the keywords.
 * @param int $minWordLen[optional] The minimun length (number of chars) of a word to be considered a keyword.
 * @param int $minWordOccurrences[optional] The minimun number of times a word has to appear 
 * on param $str to be considered a keyword.
 * @param boolean $asArray[optional] Specifies if the function returns a string with the 
 * keywords separated by a comma ($asArray = false) or a keywords array ($asArray = true).
 * @return mixed A string with keywords separated with commas if param $asArray is true,* an array with the keywords otherwise.
 */
function extract_keywords($str,$minWordLen = 3,$minWordOccurrences = 2,$asArray = false)
{
 function keyword_count_sort($first,$sec)
 {
  return $sec[1] - $first[1];
 }
 $str = preg_replace('/[^\\w0-9 ]/',' ',$str);
 $str = trim(preg_replace('/\s+/',$str));
 
 $words = explode(' ',$str);
 $keywords = array();
 while(($c_word = array_shift($words)) !== null)
 {
  if(strlen($c_word) <= $minWordLen) continue;
 
  $c_word = strtolower($c_word);
  if(array_key_exists($c_word,$keywords)) $keywords[$c_word][1]++;
  else $keywords[$c_word] = array($c_word,1);
 }
 usort($keywords,'keyword_count_sort');
 
 $final_keywords = array();
 foreach($keywords as $keyword_det)
 {
  if($keyword_det[1] < $minWordOccurrences) break;
  array_push($final_keywords,$keyword_det[0]);
 }
 return $asArray ? $final_keywords : implode(',',$final_keywords);
}
 
//How to use
 
//Basic lorem ipsum text to extract the keywords
$text = "
Lorem ipsum dolor sit amet,consectetur adipiscing elit. 
Curabitur eget ipsum ut lorem laoreet porta a non libero. 
Vivamus in tortor metus. Suspendisse potenti. Curabitur 
metus nisi,adipiscing eget placerat suscipit,suscipit 
vitae felis. Integer eu odio enim,sed dignissim lorem. 
In fringilla molestie justo,vitae varius risus lacinia ac. 
Nulla porttitor justo a lectus iaculis ut vestibulum magna 
egestas. Ut sed purus et nibh cursus fringilla at id purus.
";
//Echoes: lorem,suscipit,metus,fringilla,purus,justo,eget,vitae,ipsum,curabitur,adipiscing
echo extract_keywords($text);

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...