我需要一个ping提交的功能
就是把新的网址主动通过ping提交给百度
这个是网上找到的代码,我应该如何改造,放在哪个位置?
<?php
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;
}
$baiduXML = "
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<methodCall>
<methodName>weblogUpdates.extendedPing</methodName>
<params>
<param><value><string>网站名称</string></value></param>
<param><value><string>http://www.xxxxx.com</string></value></param>
<param><value><string>http://www.xxxxx.com/archives/879/</string></value></param>
<param><value><string>http://www.xxxxx.com/feed/</string></value></param>
</params>
</methodCall>";
$res = postUrl('http://ping.baidu.com/ping/RPC2', $baiduXML);
//下面是返回成功与否的判断(根据百度ping的接口说明)
if (strpos($res, "<int>0</int>"))
echo "PING成功";
else
echo "PING失败";
?>
插件版权:第三方插件
插件名称:ping提交
百度主动推送
接口地址:https://ziyuan.baidu.com/linksubmit/ind...