我正在使用强制下载脚本来避免在我的站点中流式传输 mp3 文件。它可以在我的电脑上运行,但在我的安卓手机上,下载没有开始!!在我的 android 平板电脑中,文件扩展名变为 filename.mp3;所以文件必须重命名才能工作!
这里有什么问题 ?
<?php
$file=str_replace("\0", null, htmlspecialchars($_GET['file']));
$name = $_GET['name'];
header ("Content-type: octet/stream");
header ("Content-disposition: attachment; filename=".$name.";");
readfile($file);
exit;
?>
我只是做了一个小改动,它在平板电脑上运行良好。但是我的安卓手机没有下载。
header("Content-Disposition: attachment;filename = $name");