PHP:下载大型多个文件时损坏ZIP

时间:2016-09-19 15:31:52

标签: php

我下载大型多个文件(如5个视频)时出错了

以下是代码:

HTML5代码:

<input type='checkbox' name='files[]' value="<?php echo $row['video_name']; ?>">

PHP代码:

header('Content-type: application/zip');
header('Content-Disposition: attachment; filename="'.$zip_name.'"');readfile($zip_name);
unlink($zip_name);

1 个答案:

答案 0 :(得分:0)

在不知道错误是什么的情况下,我会在黑暗中捅一下:

ini_set("max_execution_time", 300);

我的猜测是你的脚本超时了。很难说没有更多的数据。