function shortURL($long)
{
$short=file_get_contents("http://is.gd/api.php?longurl=".$long);
return $short;
}
Usage:
$short = shortURL("http://veryveryveryverylongurl.tld/something/verylong.php");
echo $short;
function shortURL($long)
{
$short=file_get_contents("http://is.gd/api.php?longurl=".$long);
return $short;
}
Usage:
$short = shortURL("http://veryveryveryverylongurl.tld/something/verylong.php");
echo $short;
I have to fix that :)