Skip to content
Advertisement

Streaming a large file using PHP

I have a 200MB file that I want to give to a user via download. However, since we want the user to only download this file once, we are doing this:

JavaScript

to force a download. However, this means that the whole file has to be loaded in memory, which usually doesn’t work. How can we stream this file to them, at some kb per chunk?

Advertisement

Answer

Try something like this (source http://teddy.fr/2007/11/28/how-serve-big-files-through-php/):

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement