//返回成功信息
$msg = " 请选择你的后续操作:
<a href='article_add.php?cid=$typeid'><u>继续发布文章</u></a>
<a href='$artUrl' target='_blank'><u>查看文章</u></a>
<a href='archives_do.php?aid=".$arcID."&dopost=editArchives'><u>更改文章</u></a>
<a href='catalog_do.php?cid=$typeid&dopost=listArchives'><u>已发布文章管理</u></a>
$backurl
";
//百度实时推送开始
$urls = array(
'https://www.cungame.com'.$artUrl,
);
$api = 'http://data.zz.baidu.com/urls?site=www.cungame.com&token=xxzwTWAasoMxxxx';
$ch = curl_init();
$options = array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode("\n", $urls),
CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
echo $result;
echo "提交到百度站长平台的URL地址".$urls[0];
//百度实时推送结束
注意:http://data.zz.baidu.com/urls?site=www.cungame.com&token=xxzwTWAasoMxxxx这里是从百度站长后台申请到的,换成自己的链接哦 。
修改结果如图:
试试在网站后台添加文章看看,成功效果如下: