我想让用户下载最大 1GB 的文件,但根据我的代码,只能下载 113MB 的文件...
header('Content-type: application/zip');
//open/save dialog box
header('Content-Disposition: attachment; filename="check.zip"');
//read from server and write to buffer
readfile('check.zip');
谁能告诉我如何下载更大的文件?