1

Quick short URL PHP function

Date: 27 08, 2010 | Section: Open Technologies | Topics: , ,
1
2
3
4
5
function shortURL($long)
{
 $short=file_get_contents("http://is.gd/api.php?longurl=".$long);
 return $short;
}

Usage:

1
2
$short = shortURL("http://veryveryveryverylongurl.tld/something/verylong.php");
echo $short;
Programming in Java? Get one month FREE JRebel license from here.

just 1 comment until now. It's your turn.

  1. Bogo says:

    I have to fix that :)

What do you think about the topic? !