Decodes data encoded with MIME base64

Decodes a base64 encoded string.

<?php
$string = "VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==";
echo base64_decode($string);
?>

Use this to decode Base64 encoded string: