show/hide this revision's text 2 added 433 characters in body

When using output

Output buffers have all the pitfalls of global variables. You have to be aware of all execution paths from the ob_start() to the ob_get_clean(). Are you sure it will get there, keep and that any buffers opened in between will have been closed? Keep in mind that code can throw exceptions. Are you sure it will get all That can be a really fun bug for the way next guy to track down.

On the other hand--and I hate to even mention it--at one time output buffering was somewhat faster at concatenating large strings, for reasons internal to PHP. I'm not sure if that ob_get_clean()?is still true.

show/hide this revision's text 1

When using output buffers, keep in mind that code can throw exceptions. Are you sure it will get all the way to that ob_get_clean()?