Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created September 28, 2013 21:32
Show Gist options
  • Save theukedge/6746856 to your computer and use it in GitHub Desktop.
Save theukedge/6746856 to your computer and use it in GitHub Desktop.
<?php
function getBitly($url) {
$bitly = file_get_contents("http://api.bit.ly/v3/shorten?login=yourbitlyusername&apiKey=yourbitlyAPIkey&longUrl=$url%2F&format=txt");
return $bitly;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment