Skip to content

Instantly share code, notes, and snippets.

@bladeofsteel
Created February 2, 2014 11:24
Show Gist options
  • Save bladeofsteel/8766906 to your computer and use it in GitHub Desktop.
Save bladeofsteel/8766906 to your computer and use it in GitHub Desktop.
Encode and Decode a String using Base64 scheme
<?php
function base64url_encode($plainText)
{
$base64 = base64_encode($plainText);
$base64url = strtr($base64, '+/=', '-_,');
return $base64url;
}
function base64url_decode($plainText)
{
$base64url = strtr($plainText, '-_,', '+/=');
$base64 = base64_decode($base64url);
return $base64;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment