以下のprocessPage
関数では、処理された各URLのキーワードメタタグからキーワードを取得しています。preg_split
キーワードクラスターの最初の3つの単語のみを取得するように変更する必要があります。
たとえば、次のキーワードmeta
タグを指定します。
<meta name="keywords" content="this is too long, this is not, keyword three" />
最初のキーワードクラスターの「これも」の部分だけが必要です。
また、キーワードフレーズの合計リストが10を超える場合は、リストから最初の10個のキーワードフレーズのみを取得します。
すなわち、(キーワードフレーズ1、kw 2、kw 3、kw4など...、キーワードフレーズ10)
どんな助けでも大歓迎です。
<?php
class ResultPage
{
function __construct($siteurl){$this->url = $siteurl;$this->processPage();}
public $url;
public $title;
public $html;
public $plainText;
public $wordList;
public $keywords = array();
function processPage(){
$this->html = rseo_keywordSearch_scrapePage($this->url);
$dom = str_get_html($this->html);
$metakws = $dom->find('meta[name=keywords]');
if(count($metakws)){
$metakw = $metakws[0];
if($metakw->content){
$this->keywords = preg_split("/[\s]*[,][\s]*/",$metakw->content); //EDIT HERE
}
}
}
public function GetResults(){
return rseo_keyword_getCountArray($this->wordList);
}
}
/*
*
* Calls remote web page using cUrl,
* and returns the raw html
*
*/
function rseo_keywordSearch_scrapePage($url, $headonly = TRUE ){
$agents = 'Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16';
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_VERBOSE, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_USERAGENT, $agents);
//curl_setopt($ch, CURLOPT_NOBODY, $headonly);
curl_setopt($ch, CURLOPT_URL, $url);
$curlResp = curl_exec($ch);
curl_close($ch);
$resp = str_replace("class=l","class='l'",$curlResp);
return $resp;
}
function rseo_keyword_getCountArray($arr){
$retarr = array_count_values($arr);
arsort($retarr);
return $retarr;
}