View Single Post
Old 12-10-2007, 10:27 AM   #1 (permalink)
Wildhoney
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
Wildhoney is on a distinguished road
Asterix Reverse TinyURLs

php Code:
function tinyurl_reverse($szAddress)
{
    $szAddress = explode('.com/', $szAddress);
    $szAddress = 'http://preview.tinyurl.com/'.$szAddress[1];
    $szDocument = file_get_contents($szAddress);
    preg_match('~redirecturl" href="(.*)">~i', $szDocument, $aMatches);
   
    if(isset($aMatches[1]))
    {
        return $aMatches[1];
    }
   
    return null;
}

echo tinyurl_reverse('http://tinyurl.com/388onbs');

Snazzy
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote
The Following 5 Users Say Thank You to Wildhoney For This Useful Post:
deflated (12-29-2007), Gurnk (12-10-2007), Haris (12-10-2007), Village Idiot (12-11-2007), webosb (01-01-2008)