Re: [nyphp-talk] Output Buffering with CLI

2011-06-10 Thread Ronald Bradford
Thanks. Using that order actually fails. PHP Notice: ob_flush(): failed to flush buffer. No buffer to flush. however the following did give me what I wanted. ob_flush(); ob_end_flush(); flush(); ob_start(); On Fri, Jun 10, 2011 at 2:34 PM, federico ulfo wrote: > On php.net somebody advised

Re: [nyphp-talk] Output Buffering with CLI

2011-06-10 Thread federico ulfo
On php.net somebody advised to flush the buffer with ob_end_flush(); ob_flush(); flush(); ob_start(); You can try On Jun 10, 2011, at 8:24 PM, Ronald Bradford wrote: I am having an issue where I am not getting any output during a long running CLI PHP script. Before any output