Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ratajczak/f97c8746bdc5070e9b1a27aad89675fb to your computer and use it in GitHub Desktop.
Save ratajczak/f97c8746bdc5070e9b1a27aad89675fb to your computer and use it in GitHub Desktop.
base64 bash vs php
echo aaa | base64
YWFhCg==
php -r "echo base64_encode('aaa') . PHP_EOL;"
YWFh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment