Reply to Re: The best method to send a large file to client?
Posted by Arjen on 10/05/06 08:10
howachen@gmail.com schreef:
> I have many text file with 1 to 2MB in size
>
> currently, i use the method:
>
> echo file_get_contents( $file_path );
>
>
> are there any better method?
>
> thanks.
Yup .. stream the file.
file($file_path);
foreach($file as $line)
{
echo $line;
ob_flush();
flush();
}