PHP Code: 
function GetAlexaTrafficRank($domain) {
   
$domain preg_replace('#(https?://)?(www\.)?#i','',$domain);
   ... 
This should strip "http://", "https://", "www.", so you can pass almost any domain to the function.