", "“", "”"); $qc_rows = str_replace($arr , '', $r"/> ", "“", "”"); $qc_rows = str_replace($arr , '', $r">

首頁  >  文章  >  後端開發  >  關鍵字批次查詢 php 自寫函數程式碼 取得關鍵字 去超鏈接

關鍵字批次查詢 php 自寫函數程式碼 取得關鍵字 去超鏈接

WBOY
WBOY原創
2016-07-29 08:41:48991瀏覽

1.依權重取得關鍵字

複製程式碼 程式碼如下:


function getkey($contents){
$ rows = strip_tags($contents);
$arr = array(' ',' ',"s", "rn", "n", "r", "t", ">", "「", "”");
$qc_rows = str_replace($arr, '', $rows);
if(strlen($qc_rows)>2400){
$qc_rows = substr($qc_rows, '0 ', '2400');
}
$data = @implode('', file("http://keyword.discuz.com/related_kw.html?title=$contents&ics=gbk&ocs=gbk") );
preg_match_all("/(.*)A[(.*)]](.*)>/",$data, $out, PREG_SET_ORDER);
for( $i=0;$i$key=$key.$out[$i][2];
if($out[$i][2])$key =$key.",";
}
return $key;
}
//$contents為你要得到關鍵字的文章


2.去掉文章中的超連結簡單,簡潔

複製程式碼 程式碼如下:


function get_new_content($content){

function get_new_content($content){

function get_new_content($content){
include("../simple_html_dom.php");
$html = str_get_html($content);
$a_href = $html->find('a');
foreach($a_href as $ link){
$text = $link->plaintext;//連結中的文字;
$link->outertext = $text;
}

$now_content = $html->save( );

}

//preg_replace("/(.*?)/i","${1}", $content); 這樣用正規也可以

以上就介紹了關鍵字批量查詢 php 自寫函數代碼 獲取關鍵字 去超鏈接,包括了關鍵字批量查詢方面的內容,希望對PHP教程有興趣的朋友有所幫助。
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn