Re: [PHP] stream_read function for registered wrapper class.

2012-09-19 Thread Rob
Sorry, I just realized my replies were going to email instead of the news group. I'm going to try upgrading to php 5.4 so I have access to this: http://php.net/manual/en/function.stream-set-chunk-size.php And see if that fixes some of my problems. Thanks for the suggestions. -- PHP General

Re: [PHP] stream_read function for registered wrapper class.

2012-09-19 Thread Matijn Woudt
On Wed, Sep 19, 2012 at 6:43 PM, Rob wrote: > I have a very large XML file that I have to process. It's about 7 GB. > Some of the individual elements that I need are larger than 8192 bytes. > I'm trying to write a Stream wrapper class to give me a specific element > at a time, but I keep running

Re: [PHP] stream_read function for registered wrapper class.

2012-09-19 Thread Adam Richardson
On Wed, Sep 19, 2012 at 12:43 PM, Rob wrote: > I have a very large XML file that I have to process. It's about 7 GB. > Some of the individual elements that I need are larger than 8192 bytes. > I'm trying to write a Stream wrapper class to give me a specific element > at a time, but I keep running