Results 1 to 7 of 7
Threaded View
-
8th Feb 2012, 01:05 PM #6Respected MemberWebsite's:
DL4Everything.com Soft2050.inThe Regex failed
PHP Code:<?php
/**
* This is simple description.
*
* @author Vick Kumar <vickkumar2011@gmail.com>
* @copyright Seecure.me, 2012
* @version 1.0
* @license http://creativecommons.org/licenses/by/3.0/legalcode
*/
function GetAlexaTrafficRank($domain)
{
$source = file_get_contents("http://www.alexa.com/siteinfo/$domain#");
$regex = '/is ranked (.*) in/';
preg_match($regex, $source, $match);
$newresult = str_replace("number", "", $match[1]);
return $newresult;
}
echo "KWWHunction's Alexa Traffic Rank is: ".GetAlexaTrafficRank("besthostingforums.com").".";
?>
Fix the regex
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
themaCreator - create posts from...
Version 3.55 released. Open older version (or...