我需要一点帮助。 我打算用PHP创建2个csv文件并让浏览器下载它们。 用户单击按钮时会发生这种情况。但是,我发现每个http请求只允许下载1个文件。我偶然发现了这个stackoverflow帖子PHP Create Multiple CSV Files in Memory then Compress。该解决方案在内存中创建3个csv文件,并将它们添加到zip文件中并将其下载到客户端的浏览器中。
$headers = array('id', 'name', 'age', 'species');
$records = array(
array('1', 'gise', '4', 'cat'),
array('2', 'hek2mgl', '36', 'human')
);
// create your zip file
$zipname = 'file.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
// loop to create 3 csv files
for ($i = 0; $i < 3; $i++) {
// create a temporary file
$fd = fopen('php://temp/maxmemory:1048576', 'w');
if (false === $fd) {
die('Failed to create temporary file');
}
// write the data to csv
fputcsv($fd, $headers);
foreach($records as $record) {
fputcsv($fd, $record);
}
// return to the start of the stream
rewind($fd);
// add the in-memory file to the archive, giving a name
$zip->addFromString('file-'.$i.'.csv', stream_get_contents($fd) );
//close the file
fclose($fd);
}
// close the archive
$zip->close();
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename='.$zipname);
header('Content-Length: ' . filesize($zipname));
readfile($zipname);
// remove the zip archive
unlink($zipname);
我尝试将标记为正确的解决方案,但它无法正常工作。 已下载zip文件,但该文件为空。
任何帮助都将不胜感激。
PS:对不起,英文不好,我不是母语人士。
答案 0 :(得分:0)
您的代码是正确的。但是由于权限,我也在创建zip文件时遇到了问题。您需要设置运行脚本的文件夹的权限以及脚本本身的权限。假设你在linux下使用chmod
recursivly(-R
):
chmod -R 666 your_folder