当前位置 : 主页 > 网络编程 > PHP >

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

来源:互联网 收集:自由互联 发布时间:2021-07-03
通过站长站获取网站百度权重的PHP代码 function br($s){ $baidu="http://mytool.chinaz.com/baidusort.aspx?host=".$s; $site=file_get_contents($baidu); preg_match("/font color=\"\"(.*)\/font/i",$site,$count); return $count[1][0];}$
通过站长站获取网站百度权重的PHP代码
function br($s){
    $baidu="http://mytool.chinaz.com/baidusort.aspx?host=".$s;
    $site=file_get_contents($baidu);
    preg_match("/<font color=\"\">(.*)<\/font>/i",$site,$count);
    return $count[1][0];
}
$br=br("http://xxx.com");
echo $br;
网友评论