Generate ShortURLs with one line of PHP

Generate ShortURLs with one line of PHP

All you need is allow_url_fopen enabled in your php.ini and PHP version 4.3.0 or higher. If you don’t know if you have allow_url_fopen enabled, just run the function phpinfo(), which displays all of your PHP settings.

$shortenedurl = file_get_contents(‘http://s.jar.io/api.php?url=’ . urlencode(‘http://’ . $_SERVER[‘HTTP_HOST’] . ‘/’ . $_SERVER[‘REQUEST_URI’]));