Decodes data encoded with MIME base64 Decodes a base64 encoded string. <?php $string = "VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=="; echo base64_decode($string); ?>