当前位置:首页 > PHP教程 > php应用 > 列表

PHP函数实现从一个文本字符串中提取关键字的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-06 14:40:31 浏览: 评论:0 

本文实例讲述了PHP函数实现从一个文本字符串中提取关键字的方法,分享给大家供大家参考,具体分析如下:

这是一个函数定位接收一个字符串作为参数(连同其他配置可选参数),并且定位该字符串中的所有关键字(出现最多的词),返回一个数组或一个字符串由逗号分隔的关键字。功能正常工作,但我正在改进,因此,感兴趣的朋友可以提出改进意见。

  1. /** 
  2.  * Finds all of the keywords (words that appear most) on param $str  
  3.  * and return them in order of most occurrences to less occurrences. 
  4.  * @param string $str The string to search for the keywords. 
  5.  * @param int $minWordLen[optional] The minimun length (number of chars) of a word to be considered a keyword. 
  6.  * @param int $minWordOccurrences[optional] The minimun number of times a word has to appear  
  7.  * on param $str to be considered a keyword. 
  8.  * @param boolean $asArray[optional] Specifies if the function returns a string with the  
  9.  * keywords separated by a comma ($asArray = false) or a keywords array ($asArray = true). 
  10.  * @return mixed A string with keywords separated with commas if param $asArray is true,  
  11.  * an array with the keywords otherwise. 
  12.  */ 
  13. function extract_keywords($str$minWordLen = 3, $minWordOccurrences = 2, $asArray = false) 
  14.   function keyword_count_sort($first$sec
  15.   { 
  16.     return $sec[1] - $first[1]; 
  17.   } 
  18.   $str = preg_replace('/[^\\w0-9 ]/'' '$str); 
  19.   $str = trim(preg_replace('/\s+/'' '$str)); 
  20.   $words = explode(' '$str); 
  21.   $keywords = array(); 
  22.   while(($c_word = array_shift($words)) !== null) 
  23.   { 
  24.     if(strlen($c_word) <= $minWordLencontinue
  25.     $c_word = strtolower($c_word); 
  26.     if(array_key_exists($c_word$keywords)) $keywords[$c_word][1]++; 
  27.     else $keywords[$c_word] = array($c_word, 1); 
  28.   } 
  29.   usort($keywords'keyword_count_sort'); 
  30.   $final_keywords = array(); 
  31.   foreach($keywords as $keyword_det
  32.   { 
  33.     if($keyword_det[1] < $minWordOccurrencesbreak
  34.     array_push($final_keywords$keyword_det[0]); 
  35.   } 
  36.   return $asArray ? $final_keywords : implode(', '$final_keywords); 
  37. //How to use 
  38. //Basic lorem ipsum text to extract the keywords 
  39. $text = " 
  40. Lorem ipsum dolor sit amet, consectetur adipiscing elit.  
  41. Curabitur eget ipsum ut lorem laoreet porta a non libero.  
  42. Vivamus in tortor metus. Suspendisse potenti. Curabitur  
  43. metus nisi, adipiscing eget placerat suscipit, suscipit  
  44. vitae felis. Integer eu odio enim, sed dignissim lorem.  
  45. In fringilla molestie justo, vitae varius risus lacinia ac.  
  46. Nulla porttitor justo a lectus iaculis ut vestibulum magna  
  47. egestas. Ut sed purus et nibh cursus fringilla at id purus. 
  48. "; 
  49. //Echoes: lorem, suscipit, metus, fringilla, purus, justo, eget, vitae, ipsum, curabitur, adipiscing 
  50. echo extract_keywords($text);

Tags: PHP函数 PHP字符串提取关键字

分享到: