我下载大型多个文件(如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);
答案 0 :(得分:0)
在不知道错误是什么的情况下,我会在黑暗中捅一下:
ini_set("max_execution_time", 300);
我的猜测是你的脚本超时了。很难说没有更多的数据。