暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

query.php 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. /**
  3. * Baidu
  4. * @editer: Weifeng
  5. * @link: https://wfblog.net
  6. * @version: 1.0
  7. */
  8. error_reporting(0);
  9. header("Access-Control-Allow-Origin:*");
  10. header('Content-type: application/json');
  11. $domain = @$_GET['domain'];
  12. if(!isset($domain) || empty($domain) || $domain==''){
  13. $data = array(
  14. "code" => false,
  15. "msg" => "未传入请求参数!"
  16. );
  17. echo json_encode($data,JSON_UNESCAPED_UNICODE);
  18. exit;
  19. }
  20. if(substr($domain, -1) == '/'){
  21. $domain = substr($domain,0,strlen($domain)-1);
  22. }
  23. $data = checkBaidu($domain);
  24. echo json_encode($data,JSON_UNESCAPED_UNICODE);
  25. function checkBaidu($url){
  26. $header = array(
  27. "Host:www.baidu.com",
  28. "Content-Type:application/x-www-form-urlencoded",//post请求
  29. "Connection: keep-alive",
  30. "Referer:https://www.baidu.com",
  31. "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36"
  32. );
  33. $url = 'https://www.baidu.com/s?ie=UTF-8&wd='.urlencode($url).'&usm=3&rsv_idx=2&rsv_page=1';
  34. $ch = curl_init();
  35. curl_setopt($ch, CURLOPT_URL, $url);
  36. curl_setopt ($ch, CURLOPT_HTTPHEADER, $header);
  37. curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1);
  38. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  39. $output = curl_exec($ch);
  40. curl_close($ch);
  41. if(strpos($output, '没有找到') || strpos($output, '很抱歉')){
  42. $data = array(
  43. "code" => 403,
  44. "msg" => "该域名暂时未被百度收录!"
  45. );
  46. }else{
  47. $number = GetBetween($output,'<span class="nums_text">百度为您找到相关结果约','个</span>');
  48. if(empty($number) || $number == 0){
  49. $number = GetBetween($output,'<b>找到相关结果数约','个</b></p>');
  50. if(empty($number) || $number == 0){
  51. $data = array(
  52. "code" => false,
  53. "msg" => "获取百度收录失败!"
  54. );
  55. return $data;
  56. }
  57. }
  58. $data = array(
  59. "code" => 200,
  60. "msg" => "该域名已被百度收录!",
  61. "number" => str_replace(',','',$number)
  62. );
  63. }
  64. return $data;
  65. }
  66. function GetBetween($content,$start,$end){
  67. $r = explode($start, $content);
  68. if (isset($r[1])){
  69. $r = explode($end, $r[1]);
  70. return $r[0];
  71. }
  72. }
  73. ?>