Skip to content

Instantly share code, notes, and snippets.

@apphp-snippets
Created May 20, 2012 20:51
Show Gist options
  • Save apphp-snippets/2759488 to your computer and use it in GitHub Desktop.
Save apphp-snippets/2759488 to your computer and use it in GitHub Desktop.
Get short urls for Twitter with PHP
<?php
/* Source: http://www.apphp.com/index.php?snippet=php-get-remote-ip-address */
function getShortUrl($url){
return file_get_contents('http://tinyurl.com/api-create.php?url='.$url);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment