php 读取 sogourank 与 ChinaRank信息
PHPB2B Athena 是一款基于PHP、MySQL的B2B行业电子商务网站管理系统,系统提供了供求信息、公司库、专业市场库、产品库、展会、人才招聘、行业资讯等模块,适用于想在行业里取得领先地位的企业快速架设B2B网站,可以运行于Linux与Windows等多重服务器环境,安装方便,使用灵活。强大的插件功能: 系统自带企业视频展播、在线QQ客服、baidu sitemap以及google si
function sogouRank($domain)
{
$rank = '';
$pr = 0;
$content = get_content('http://www.sogou.com/web?query='.$domain);
if(preg_match("/([0-9]{1,})/", $content, $matches))
{
$pr = intval($matches[1]);
$width = ceil(65*$pr/100);
$rank = '


';
}
$rank = ''.$rank.' '.$pr;
return $rank;
}
function ChinaRank($domain)
{
$rank = '';
$content = get_content('http://www.chinarank.org.cn/detail/Info.do?url='.$domain);
if(preg_match("/排名(.*)/", $content, $matches))
{
$p = trim(str_replace('', '', $matches[1]));
$p = explode("
if(isset($p[1])) $rank.= ' 今日:'.$p[1];
if(isset($p[2])) $rank.= ' 本周:'.$p[2];
if(isset($p[3])) $rank.= ' 三月:'.$p[3];
}
$rank = ''.$rank.'';
return $rank;
}










