帝国CMS获取Alexa Rank排名函数
2020-04-11 站长 站长日志
增加到帝国CMS自定义函数里
PHP CODE
function get_alexarank($url) {
$data = get_url_content("http://xml.alexa.com/data?cli=10&dat=nsa&ver=quirk-searchstatus&url=$url"); if (preg_match('/<POPULARITY[^>]*URL[^>]*TEXT[^>]*"([0-9]+)"/i', $data, $matches)) { $rank = strip_tags($matches[1]);
} else { $rank = 0;
} return $rank;
}
下一篇:帝国cms内容页文章字数统计