我目前正在研究长尾 SEO 的一些新想法。我有一个网站,人们可以在其中创建自己的博客,这已经带来了相当不错的长尾流量。我已经在文章的标题标签中显示文章标题。
但是,通常标题与内容中的关键字不能很好地匹配,我有兴趣在 php 实际确定的标题中添加一些关键字是最好的。
我尝试使用我制作的脚本来计算页面上最常见的单词。这工作正常,但问题是它提出了非常无用的词。
在我看来,有用的是制作一个 php 脚本,该脚本将提取频繁出现的单词对(或 3 个单词的集合),然后将它们放入一个按它们出现的频率排序的数组中。
我的问题:如何以更动态的方式解析文本以查找重复出现的单词对或三组单词。我该怎么办?
function extractCommonWords($string, $keywords){
$stopWords = array('i','a','about','an','and','are','as','at','be','by','com','de','en','for','from','how','in','is','it','la','of','on','or','that','the','this','to','was','what','when','where','who','will','with','und','the','www');
$string = preg_replace('/\s\s+/i', '', $string); // replace whitespace
$string = trim($string); // trim the string
$string = preg_replace('/[^a-zA-Z0-9 -]/', '', $string); // only take alphanumerical characters, but keep the spaces and dashes too…
$string = strtolower($string); // make it lowercase
preg_match_all('/\b.*?\b/i', $string, $matchWords);
$matchWords = $matchWords[0];
foreach ( $matchWords as $key=>$item ) {
if ( $item == '' || in_array(strtolower($item), $stopWords) || strlen($item) <= 3 ) {
unset($matchWords[$key]);
}
}
$wordCountArr = array();
if ( is_array($matchWords) ) {
foreach ( $matchWords as $key => $val ) {
$val = strtolower($val);
if ( isset($wordCountArr[$val]) ) {
$wordCountArr[$val]++;
} else {
$wordCountArr[$val] = 1;
}
}
}
arsort($wordCountArr);
$wordCountArr = array_slice($wordCountArr, 0, $keywords);
return $wordCountArr;
}