<?php
// site url
$url = 'SİTELİNKİ';
$alexa = simplexml_load_file('http://data.alexa.com/data?cli=10&url='.$url);
// global rank
$globalRank = number_format( (int) $alexa->SD->POPULARITY['TEXT'] );
// country rank
$countryCode = $alexa->SD->COUNTRY['CODE'];
$countryName = $alexa->SD->COUNTRY['NAME'];
$countryRank = number_format( (int) $alexa->SD->COUNTRY['RANK'] );
print 'Alexa Dünya Sıralamanız : '.$globalRank;
print '<hr />';
print 'Alexa Ülkeniz ve Sıralamanız : '.$countryName.' '.$countryRank;
?>
buyrun kullanırsınız