Over the past year I have made heavy use of PHP output buffering. Although it serves no function purpose, it can make for much more readable code; I have found it particlarly useful for outputting HTML from methods. Consider the following code example:
As you can see, using output buffering makes the html much easier to read (especially thanks to Netbeans code highlighting). With short examples, the difference is negligable, but when you have large amounts of html in a php method, using output buffering can make the code a lot more maintainable.

