PHP output buffering - sounds like a bad idea, is it? PHP output buffering - sounds like a bad idea, is it? php php

PHP output buffering - sounds like a bad idea, is it?


From my experience, there isn't a significant impact on performance. I also can't find consistent answers on the subject -- some people claim that there is barely any hit against performance, while some say that there is a minor but significant effect. There is even a comment on php.net suggesting that buffering increases performance as compared to multiple output functions, not that I've verified that or anything.

I think the question of whether or not to buffer has more to do with the intended use of your application. Buffering makes a lot of sense if you want to compress the output before sending it, or if you want to control exactly when and where the output takes place in your code. Since it doesn't take that much effort to add buffering, you may as well try it out -- it should be relatively easy to remove it if you need to.


I think the opposite. Not buffering output is a bad idea unless you run into a situation where you really need it. For instance, a script that's going to create huge amounts of output.

In most cases, burning a bunch of programmer time to save some unknown quantity of (cheap) memory sounds like a waste of resources.


If you are in the situation where content is getting output before the headers, you'll need to stuff it in a buffer or else the page will error out that content was output before headers. This has happened to me with shared libraries and not enough time to go in and do a proper fix to get to launch. It's one of those mark a //TODO / FIXME and then go back and make it proper later on.