Problem Statement
What is output buffering used for in PHP?
Explanation
Output buffering temporarily holds the output before sending it to the browser. It allows manipulation of headers or compression of data before output.
Code Solution
SolutionRead Only
ob_start(); echo 'Hello'; ob_end_flush();
