首页 > CMS > 帝国Empire > 正文

帝国CMS获取搜狗Pagerank权重函数

2024-08-28 12:26:48
字体:
来源:转载
供稿:网友

增加到帝国CMS自定义函数里

PHP CODE

function get_sogourank($url) {

$data = get_url_content("http://rank.ie.sogou.com/sogourank.php?ur=$url");

if (preg_match('/sogourank=(d+)/i', $data, $matches)) {

$rank = intval($matches[1]);

} else {

$rank = 0;

}

return $rank;

}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表