Possible Duplicate:
Sending large files reliably in PHP
I will be distributing a PHP script which enables people to provide downloadable products to their clients from their server via a masked URL (don't want to give away the location on the server). Some files may be pretty large, so I need to make sure I use a method which is capable of handling larger files.
I am familiar with how to utilize each of the following download methods, I am just asking which would be the best to use (most efficient, reliable, universally supported, etc.):
Streaming fopen
Streaming cURL
file_get_contents
cURL