php 用header()下载文件在firefox下没有后缀名问题

php 用header()下载文件在firefox下没有后缀名

其中有一种情况如下:

在firefox浏览器下,当文件名有空格时,会自动从空格处截断,(chrom,IE不会出现这种情况)

解决办法:

需要在文件名两边加上""  Header("Content-Disposition: attachment; filename=\"" . $file_name."\"");

你可能感兴趣的:(php 用header()下载文件在firefox下没有后缀名问题)