Base 64 File Encoder

File to Encode

Example Code for Output

header('Content-Type: '.$php_array['type']);
header('Content-Length: '.$php_array['size']);
header('Content-Disposition: inline; filename="'.$php_array['name'].'"');
echo base64_decode($php_array['data']);
exit();