杨小杰Blog(Youngxj)提供免费教程下载和网站搭建技术教程,主要分享和发布网站源码,致力创造一个高质量网络资源教程的分享平台

爱站网权重获取接口源码

Young小杰2018-7-1 14:46 网站搭建(4)4688小标签: api 源码分享 原创

使用正则获取爱站网权重,都说爱站网权重比站长之家权重真实,所以搞了一个接口

<?php
/**
 * 爱站权重获取
 * @author Youngxj <blog@youngxj.cn>
 * @time   2018年7月1日
 * @world  http://doc.yum6.cn/web/#/1?page_id=34
 */
header("Access-Control-Allow-Origin:*");
header('Content-type: application/json');
if(!$_GET['url']){error();}
// get过来的参数不能带有http(s)://
$url = $_GET['url'];

$html = httpGet("https://www.aizhan.com/cha/".$url."/");

preg_match_all('<img src="(.*)" alt="(.*)">',$html,$aizhan);

$baidupc = $aizhan[2][1] ? $aizhan[2][1] : '0';
$baidum  = $aizhan[2][2] ? $aizhan[2][2] : '0';
$sougou  = $aizhan[2][3] ? $aizhan[2][3] : '0';
$google  = $aizhan[2][4] ? $aizhan[2][4] : '0';

if($_GET['type']=='json'){
	echo json_encode(array('state'=>'200','host'=>$url,'data'=>array('baidupc'=>$baidupc,'baidum'=>$baidum,'sougou'=>$sougou,'google'=>$google)));
}else{
  if($_GET['type']=='baidupc'){
  	header('Location:'.$aizhan[1][1]);
  }elseif($_GET['type']=='baidum'){
  	header('Location:'.$aizhan[1][2]);
  }elseif($_GET['type']=='sougou'){
  	header('Location:'.$aizhan[1][3]);
  }elseif($_GET['type']=='google'){
  	header('Location:'.$aizhan[1][4]);
  }else{
  	header('Location:'.$aizhan[1][1]);
  }
}

/**
 * error
 * @return json 返回error
 */
function error(){
  $arr=array('url'=>'error');
  echoJson(json_encode($arr));
  exit();
}
/**
 * curl模拟get请求
 * @param  string $a url
 * @param  string $b post参数
 * @param  string $c 模拟来路
 * @param  string $d 模拟cookie
 * @return string    返回网站源码
 */
function httpGet($a, $b = '', $c = '', $d = ''){
  $e = curl_init();
  $f = mt_rand(11, 191) . "." . mt_rand(0, 240) . "." . mt_rand(1, 240) . "." . mt_rand(1, 240);
  $i[] = "CLIENT-IP:" . $f;
  $i[] = "X-FORWARDED-FOR:" . $f;
  $i[] = "User-agent:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11";
  $i[] = "X-Requested-With: XMLHttpRequest";
  if (!empty($d)) {
    $i[] = "Cookie: " . $d;
  }
  curl_setopt($e, CURLOPT_HTTPHEADER, $i);
  curl_setopt($e, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($e, CURLOPT_TIMEOUT, 180);
  curl_setopt($e, CURLOPT_SSL_VERIFYPEER, false);
  curl_setopt($e, CURLOPT_SSL_VERIFYHOST, false);
  if (!empty($c)) {
    curl_setopt($e, CURLOPT_REFERER, $c);
  }
  if (!empty($b)) {
    curl_setopt($e, CURLOPT_POST, 1);
    curl_setopt($e, CURLOPT_POSTFIELDS, $b);
  }
  curl_setopt($e, CURLOPT_URL, $a);
  curl_setopt($e, CURLOPT_ENCODING, "gzip");
  $j = curl_exec($e);
  curl_close($e);
  return $j;
}
ps:相关文档请参考杨小杰APIhttp://doc.yum6.cn/web/#/1?page_id=34



本文最后更新于2018-7-1,已超过 1 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!

发表评论:

评论列表:

  • 技术导航 Lv 1

    现在获取到百度pc权重图片失效了 搜狗权重显示的是百度手机权重图片 谷歌权重显示的是搜狗的权重图片 请大佬修复

    • Young小杰 站长

      回复了技术导航:有点时日没管了,有时间的话我看看吧

  • 知遇 Lv 1

    学习了

  • 鸟叔 Lv 1

    会写正则表达式的都是大牛

  • 手机扫描二维码
    阅读体验更佳