How to download large files through PHP script [duplicate]

If you use fopen and fread instead of readfile, that should solve your problem.

There’s a solution in the PHP’s readfile documentation showing how to use fread to do what you want.

Leave a Comment