百度js推送已经被百度关了,那现在用php推送吗
$urls = array(
'http://www.example.com/1.html',
'http://www.example.com/2.html',
);
$api = 'http://data.zz.baidu.com/urls?site=https://www.dydangan.com&token=HGUu9kOdZm';
$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;
现在用这个吗,不然百度怎么知道我网站的日流量(没加百度统计)
还有
$urls = array(
'http://www.example.com/1.html',
'http://www.example.com/2.html',
);
这里怎么填写内链