Advertisement
reenadak

Get Alexa Rank

Feb 20th, 2018
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1.  /*
  2.     - Get Alexa Rank
  3.     - Gets the alexa rank for a website based on the URL
  4.    
  5.     $url     - The url to get the alexa rank for
  6.     */
  7.    
  8.     public function getAlexaRank($url)
  9.     {
  10.         $xml = simplexml_load_file("http://data.alexa.com/data?cli=10&url=" . $url);
  11.  
  12.         if(isset($xml->SD)) return $xml->SD->REACH->attributes();
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement