Skip to content

Instantly share code, notes, and snippets.

@justinkelly
Created September 15, 2011 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save justinkelly/1219265 to your computer and use it in GitHub Desktop.
Save justinkelly/1219265 to your computer and use it in GitHub Desktop.
simple base64 encode/decode url safe functions
<?php
function base64_url_encode($input)
{
return strtr(base64_encode($input), '+/=', '-_,');
}
function base64_url_decode($input)
{
return base64_decode(strtr($input, '-_,', '+/='));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment