东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

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

2020-04-11 站长 站长日志

增加到帝国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;

}

文章评论