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

PHP通过站长站获取百度权重

程序员文章站 2022-04-27 11:52:10
...

[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://yckit.com");
echo $br;
相关标签: php