PHP Output Buffering
Nov 6th, 2008
Output buffering in PHP is useful in many cases. At many places it can be a handy tool. One example use of ‘Output Buffering’ is to stop the “header already sent” problem. It can help your user to get the response fast. It means decrease the waiting time for your reader.
Output Buffering can get you [...]