• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

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

php 搞代码 3年前 (2022-01-25) 8次浏览 已收录 0个评论

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

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

/** * 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 func<em style="color:transparent">本文来源gao.dai.ma.com搞@代*码#网</em><a>搞代gaodaima码</a>tion 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, adipiscingecho extract_keywords($text);

希望本文所述对大家的php程序设计有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP函数实现从一个文本字符串中提取关键字的方法_PHP
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址