libo 发表于 2021-3-30 09:35:44

seo优化利用php自动推送百度

代码如下:


<?
header('Content-Type:text/html;charset=utf-8');
$xmldata =file_get_contents("https://xxx/sitemap.xml");
$xmlstring = simplexml_load_string($xmldata,'SimpleXMLElement',LIBXML_NOCDATA);
$value_array = json_decode(json_encode($xmlstring),true);
$url = [];
for ($i =0;$i < count($value_array['url']);$i++){
    echo $value_array['url'][$i]['loc']."<br/>";
    $url[]= $value_array['url'][$i]['loc'];
}
$api ='百度推送链接';
$ch = curl_init();
$options = array(
   CURLOPT_URL => $api,
   CURLOPT_POST => true,
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_POSTFIELDS => implode("\n",$url),
   CURLOPT_HTTPHEADER => array('Content-Type:text/plain'),
);
curl_setopt_array($ch, $options);
$result =curl_exec($ch);
echo $result;



将百度api和站点地图url改为你自己的即可!
然后再定时任务中指定任务即可。
页: [1]
查看完整版本: seo优化利用php自动推送百度