Sr. PHP Programmer Question: Download Senior PHP Programmer PDF

Explain the purpose of output buffering in PHP?

Tweet Share WhatsApp

Answer:

Output buffering in PHP buffers a scripts output. This buffer can be edited before returning it to the client. Without output buffering, PHP sends data to the web server as soon as it is ready. Output buffering "send" cookies at any point in the script. Cookies do not have to be necessarily sent near the start of page. Output buffers are stackable and hence sending to output is by choice.

Download Senior PHP Programmer PDF Read All 202 Senior PHP Programmer Questions
Previous QuestionNext Question
Explain the different types of errors in PHP?What is the use of "echo" in php?