To encode and decode Base64 in PHP you can use the following snippet.
Sample PHP
function EncodeBase64($input) { return base64_encode($input); } function DecodeBase64($input) { return base64_decode($input); }
All the Code Snippets and Samples you need
To encode and decode Base64 in PHP you can use the following snippet.
function EncodeBase64($input) { return base64_encode($input); } function DecodeBase64($input) { return base64_decode($input); }
You must be logged in to post a comment.
RT @CodeSnippetsNET: How to encode and decode Base64 in #PHP http://t.co/RZROn0ebVK #html #js #javascript #jquery
RT @CodeSnippetsNET: How to encode and decode Base64 in #PHP http://t.co/RZROn0ebVK #html #js #javascript #jquery