php读取mysql中用逗号的数_php读取mysql所有数据库及表中...-PHP进行字符串循环的代码举例...-PHP从文本字符串中提取关键字的实例代码_169IT.COM...

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 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

//by www.

//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);

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值