php实现百度普通收录API提交


$urls = array(
'https://ipkd.cn/webs_1477.html'
'https://ipkd.cn/webs_1476.html'
'https://ipkd.cn/webs_1475.html'
);
$api = '接口调用地址';
$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;
以上是编程学习网小编为您介绍的“php实现百度普通收录API提交”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。

本文标题为:php实现百度普通收录API提交

基础教程推荐