この方法を使用してアクセスするときに Baidu に自動的に ping を実行する 私の方法は、キャッシュを生成し、キャッシュを更新するときに Baidu に自動的に ping を実行することです。返される結果は 0 で、成功を示します。
publicfunction__construct($title,$arturl,$hosturl,$rssurl)
{
if(empty($title)||empty($arturl))
returnfalse;
$this->title=$title;
$this ->hosturl=$hosturl;
$this->rssurl=$rssurl;
$this->arturl=$arturl;
$this->baiduRPC='http://ping.baidu.com/ping /RPC2';
$this->baiduXML='';
$this->baiduXML.='
$this-> ;baiduXML.='
$this->baiduXML.='
$this->baiduXML.='< value>
$this->baiduXML.='
$this->baiduXML.='
$this->baiduXML.='
$this->baiduXML.='
$this ->baiduXML.='
}
publicfunctionpingbaidu()
{
$ch=curl_init();
$headers=array(
'User-Agent:request',
'Host:ping .baidu.com',
'Content-Type:text/xml',
);
curl_setopt($ch,CURLOPT_URL,$this->baiduRPC);
curl_setopt($ch,CURLOPT_HEADER,1);
curl_setopt( $ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
curl_setopt($ch,CURLOPT_POSTFIELDS,$this->baiduXML);
$res =curl_exec($ch);
curl_close($ch);
//return$res;
return(strpos($res,"
}
}
functionget_domain()
{
/*プロトコル*/
$protocol='http://';
/*ドメイン名またはIPアドレス*/
if(isset($_SERVER['HTTP_X_FORWARDED_HOST'])){
$ host=$_SERVER['HTTP_X_FORWARDED_HOST'];
}elseif(isset($_SERVER['HTTP_HOST'])){
$host=$_SERVER['HTTP_HOST'];
}else{
/*ポート*/
if (isset($_SERVER['SERVER_PORT'])){
$port=':'.$_SERVER['SERVER_PORT'];
if((':80'==$port&'http://'== $ プロトコル)||(':443'==$port&'https://'==$protocol)){
$port='';
}
}else{
$port='';
}
if(isset($_SERVER['SERVER_NAME'])){
$host=$_SERVER['SERVER_NAME'].$port;
}elseif(isset($_SERVER['SERVER_ADDR'])){
$host= $_SERVER['SERVER_ADDR'].$port;
}
}
return$protocol.$host;
}
//$arc=newPing('Webサイトのタイトル','更新されたURLアドレス','Webサイトのドメイン名','RSSアドレス');
//$arc=newPing('ウェブサイトのタイトル',get_arcurl($id),get_domain(),'http://www.abc.com/rss.php');
//echo$arc->pingbaidu();
//戻り値 0 の結果は成功を示します。