欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

百度ping服务的php兑现以及google ping服务

程序员文章站 2022-06-02 18:37:08
...
百度ping服务的php实现以及google ping服务
百度ping服务的php实现:
$baiduXML = 	weblogUpdates.extendedPing小桔灯分类信息网http://www.xiaojudeng.comwww.xiaojudeng.comhttp://www.xiaojudeng.com/sitemaps.xmlEOT;$res = postUrl('http://ping.baidu.com/ping/RPC2', $baiduXML);//下面是返回成功与否的判断(根据百度ping的接口说明)if (strpos($res, "0"))        echo "PING成功";    else        echo "PING失败";


google ping服务代码:
$googleXML = weblogUpdates.extendedPing小桔灯分类信息网http://www.xiaojudeng.comhttp://www.xiaojudeng.comhttp://www.xiaojudeng.com/sitemaps.xmlEND;$res = postUrl('http://blogsearch.google.com/ping/RPC2', $googleXML);//下面是返回成功与否的判断(根据谷歌ping的接口说明)if (strpos($res, "0"))        echo "PING成功";    else        echo "PING失败";


postUrl函数代码如下:
function postUrl($url, $postvar) {    $ch = curl_init();	$headers = array(            "POST ".$url." HTTP/1.0",            "Content-type: text/xml;charset=\"utf-8\"",            "Accept: text/xml",            "Content-length: ".strlen($postvar)        );    curl_setopt($ch, CURLOPT_URL, $url);    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);    curl_setopt($ch, CURLOPT_POST, 1);	curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);    curl_setopt($ch, CURLOPT_POSTFIELDS, $postvar);    $res = curl_exec ($ch);    curl_close ($ch);    return $res;}

转载自 http://www.js8.in/644.html
百度ping服务的php兑现以及google ping服务

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频