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; |
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; |