PHP强制下载无法正常工作?

前端之家收集整理的这篇文章主要介绍了PHP强制下载无法正常工作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的 HTML页面上,我向一个强制下载的PHP脚本发出了一个 JQuery ajax请求,但什么都没发生?

在我的html页面上(在链接的单击事件处理程序中)…

var file = "uploads/test.css";
$.ajax(
{
    type      : "POST",url       : "utils/Download_File.PHP",data      : {"file":file}
})

Download_File.PHP脚本如下所示

<?PHP

Download_File::download();

class Download_File
{
    public static function download()
    {
        $file = $_POST['file'];

        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment');
        readfile('http://localhost/myapp/' . $file);
        exit;
    }
}
?>

但是由于某种原因什么都没发生?我查看了firebug中的响应头,无法看到任何问题.我正在使用Xampp.任何帮助深表感谢.

谢谢!

您应该指定Content-Transfer-Encoding.此外,您应在Content-Disposition上指定文件名.
header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: binary');
header('Content-Disposition: attachment; filename="'.$file.'"');
readfile('http://localhost/myapp/'.$file);
exit;

重要的是在文件名周围包含双引号,因为这是RFC 2231所要求的.如果文件名不在引号中,则知道Firefox下载文件名中包含空格的文件时会出现问题.

另外,请确保关闭后确保没有空格?>.如果在关闭PHP标记之后存在空格,则标题将不会发送到浏览器.

作为旁注,如果您要提供许多常见文件类型供下载,则可以考虑指定这些MIME类型.这为最终用户提供了更好的体验.例如,你可以这样做:

//Handles the MIME type of common files
$extension = explode('.',$file);
$extension = $extension[count($extension)-1];
SWITCH($extension) {
  case 'dmg':
    header('Content-Type: application/octet-stream');
    break;
  case 'exe':
    header('Content-Type: application/exe');
    break;
  case 'pdf':
    header('Content-Type: application/pdf');
    break;
  case 'sit':
    header('Content-Type: application/x-stuffit');
    break;
  case 'zip':
    header('Content-Type: application/zip');
    break;
  default:
    header('Content-Type: application/force-download');
    break;
}
原文链接:https://www.f2er.com/php/137954.html

猜你在找的PHP相关文章