每当有一个space
名称为 CSV 文件时,xyz abc.csv
我们都面临通过 PHP 代码下载的问题,而其他 CSV 文件中没有空间,可以正常工作并正常下载。
下面是我的下载代码:
$file_path = 'http://www.servername.com/subfolder/subfolder/';
$file = urlencode('Today new_18-10-2012_21-13-21.csv');
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename="'.$file.'"');
header('Pragma: no-cache');
readfile($file_path.$file);
当文件被下载时,它总是0 bytes
在原始文件93kb
大小的时候
任何关于这个麻烦的建议。
提前致谢 !