<?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;
}
?>
Sorry for the trouble, everyone