欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-03-30 18:07:57
...
通过站长站获取网站百度权重的php代码
  1. function br($s){
  2. $baidu="http://mytool.chinaz.com/baidusort.aspx?host=".$s;
  3. $site=file_get_contents($baidu);
  4. preg_match("/(.*)/i",$site,$count);
  5. return $count[1][0];
  6. }
  7. $br=br("http://xxx.com");
  8. echo $br;
复制代码

站长站, PHP