• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

百度ping方法使用示例 自动ping百度

php 搞代码 4年前 (2022-01-01) 90次浏览 已收录 0个评论

这篇文章主要介绍了百度ping方法使用示例,可以把网站地址自动ping到百度,大家参考使用吧

代码如下:
$pingarcurl=’http://’.$_SERVER[‘HTTP_HOST’].$_SERVER[‘REQUEST_URI’];
$arcping = new Ping(‘脚本之家’,$pingarcurl,get_domain(),’https://www.gaodaima.com’);
$arcping->pingbaidu();

代码如下:
class ping{
private$title;//博客名称
private$hosturl;//博客首页地址
private$arturl;//新发文章地址
private$rssurl;//博客rss地址
private$baiduXML;//百度XML结构
private$baiduRPC;//百度XML地址

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.=’weblogUpdates.extendedPing’;
$this->baiduXML.=”;
$this->baiduXML.=”.$this->hosturl.”;
$this->baiduXML.=”.$this->titl来源gao.dai.ma.com搞@代*码网e.”;
$this->baiduXML.=”.$this->arturl.”;
$this->baiduXML.=”.$this->rssurl.”;
$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,”0″))?true:false;
}
}
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://’==$protocol)||(‘: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(‘网站标题’,’更新的URL地址’,’网站域名’,’rss地址’);
//$arc=newPing(‘你网站的title’,get_arcurl($id),get_domain(),’http://www.abc.com/rss.php’);
//echo$arc->pingbaidu();
//返回结果为0表示成功。

以上就是百度ping方法使用示例 自动ping百度的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:百度ping方法使用示例 自动ping百度
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址