使用php获取alexa排名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用php获取alexa排名相关的知识,希望对你有一定的参考价值。
Getting alexa rank is simple, a data link provide by alexa only needs the domain name and then it return xml data including the rank we want, so I make a php function to do this task.
<? function Get_Alexa_Rank($domain) { $alexa = "http://data.alexa.com/data?cli=10&dat=s&url=%s"; return FALSE; } $nodeAttributes = $xml->SD[1]->POPULARITY->attributes(); $text = (int) $nodeAttributes['TEXT']; return $text; } //example: echo "The alexa rank for Google is :". Get_Alexa_Rank('google.com') ."<BR>"; echo "The alexa rank for blogger is :". Get_Alexa_Rank('blogger.com') ."<BR>"; ?>
以上是关于使用php获取alexa排名的主要内容,如果未能解决你的问题,请参考以下文章
PHP 搜索引擎排名跟踪器 - RankTrackr访问片段