Skip to content

Instantly share code, notes, and snippets.

@LouisLandry
Created October 5, 2012 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LouisLandry/3841754 to your computer and use it in GitHub Desktop.
Save LouisLandry/3841754 to your computer and use it in GitHub Desktop.
Base36 Encode/Decode functions.
<?php
function base36_encode($base10){
return base_convert($base10,10,36);
}
function base36_decode($base36){
return base_convert($base36,36,10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment