This code is used to obtain Baidu's inclusion volume! What settings are needed to obtain the URL next to Baidu snapshot?
chen
chen 2022-07-10 13:47:56
0
1
813

网页捕获_10-7-2022_134731_www.baidu.com.jpeg

<?php

/*

Plugin Name: XY-Baidu included volume

Description: XY-Based on domain name Return Baidu included volume

*/

$domain = (isset($_GET['domain']))?$_GET['domain']:$_POST['domain'];

if(empty($domain)) echo 'The query domain name cannot be empty';

$count = baiduSL ($domain);

if(!isset($count)) showjson(array('code'=>200502,'msg'=>'Query failed, please try again!'));

if(!$count) $count = 0;

$result=array(

'code'=>1,

'domain'=>$ domain,

'data'=>$count

);

print_r(json_encode($result));

unset($domain,$result,$ch);

function baiduSL ($domain) {

$baidu='https://www.baidu.com/s?ie= utf-8&tn=baidu&wd=site:'.$domain;

$bdsite=BD_curl($baidu);

$bdsite = str_replace(array("\r\n", "\ r", "\n", ' '), '', $bdsite);

if (!$count) preg_match('/The number of relevant results found is approximately (.*?)/i', $bdsite,$count);

$baiduSL=strip_tags($count[1]);

unset($count);

return $baiduSL;

}

function BD_curl($url){

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1");

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$ret = curl_exec($ch);

curl_close($ch);

return $ ret;

}

?>

chen
chen

reply all(1)
chen

Sorry for the trouble, everyone

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!