Decode a base64 string by calling the decode_base64() function.
decode_base64($string);
$string - The encoded data.
Decoded data
use MIME::Base64; $encoded = 'YmFzZTY0IGVuY29kZWQgc3RyaW5n'; $decoded = decode_base64($encoded);