当前位置:Gxlcms > PHP教程 > 通过站长站获取网站百度权重的PHP代码

通过站长站获取网站百度权重的PHP代码

时间:2021-07-01 10:21:17 帮助过:41人阅读

通过站长站获取网站百度权重的php代码
  1. function br($s){
  2. $baidu="http://mytool.chinaz.com/baidusort.aspx?host=".$s;
  3. $site=file_get_contents($baidu);
  4. preg_match("/(.*)<\/font>/i",$site,$count);
  5. return $count[1][0];
  6. }
  7. $br=br("http://xxx.com");
  8. echo $br;

站长站, PHP

人气教程排行