的文件,我想允許用戶下載文件高達1GB的大小,但根據我的代碼只有一個113MB的文件,可以下載...如何允許下載1GB
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');
任何人都可以告訴我如何下載更大的文件?
它在哪裏告訴你它只能是113MB? – animuson
檢查此。它會幫助你http://blog.mayflower.de/archives/136-Make-the-download-of-large-files-with-PHP-and-lighty-very-easy.html – nu6A