Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save victorbstan/651281 to your computer and use it in GitHub Desktop.
Save victorbstan/651281 to your computer and use it in GitHub Desktop.
Shortest ID based URL 'shortener' script
<?php
function shortly($id)
{
return base_convert($id, 10, 36);
}
function unShortly($base)
{
return base_convert($base, 36, 10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment