There are tens of thousands of API’s available. More to come. Most of the companies though, have troubles engaging developers to use them. So I […]
Tag: API
Quick short URL PHP function
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;