php 读取 sogourank 与 ChinaRank信息
PHPB2B Athena 是一款基于PHP、MySQL的B2B行业电子商务网站管理系统,系统提供了供求信息、公司库、专业市场库、产品库、展会、人才招聘、行业资讯等模块,适用于想在行业里取得领先地位的企业快速架设B2B网站,可以运行于Linux与Windows等多重服务器环境,安装方便,使用灵活。强大的插件功能: 系统自带企业视频展播、在线QQ客服、baidu sitemap以及google si
0
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("
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号