On Tue, November 21, 2006 8:33 am, Brad Fuller wrote: > function will only use up 1K of memory no matter how big the file is. I think it will use 1M... > function readfile_chunked($filename,$retbytes=true) { > $chunksize = 1*(1024*1024); // how many bytes per chunk :-) The multiple calls to ob_flush() within the body of the loop are probably not a Good Idea, as a general rule... flush() is also probably overkill, really, for any file big enough for this function to be desirable in the first place... -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php