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

WBOY
Release: 2016-06-13 13:19:37
Original
831 people have browsed it

百度ping服务的php实现以及google ping服务
百度ping服务的php实现:

$baiduXML = 
	<methodcall>
	<methodname>weblogUpdates.extendedPing</methodname>
	<params>
	<param><value><string>小桔灯分类信息网</string></value>
	<param><value><string>http://www.xiaojudeng.com</string></value>
	<param><value><string>www.xiaojudeng.com</string></value>
	<param><value><string>http://www.xiaojudeng.com/sitemaps.xml</string></value>
	</params>
	</methodcall>
EOT;
$res = postUrl('http://ping.baidu.com/ping/RPC2', $baiduXML);
//下面是返回成功与否的判断(根据百度ping的接口说明)
if (strpos($res, "<int>0</int>"))
        echo "PING成功";
    else
        echo "PING失败";
Copy after login


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


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;
}
Copy after login

转载自 http://www.js8.in/644.html
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template