我想将二进制文件编码到base64中并将其放入php页面(内联代码),当请求页面将文件流式传输到浏览器时,弹出一个下载对话框。
任何想法
答案 0 :(得分:1)
看起来很简单。与readfile一样,使用http标头强制下载,然后回显编码的字符串。
$decoded_data = base64_decode($encoded_data);
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . strlen($decoded_data);
ob_clean();
flush();
echo $decoded_data;
exit;
答案 1 :(得分:0)