Answers

Question and Answer:

  Home  Senior PHP Programmer

⟩ Explain the purpose of output buffering in PHP?

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.

 207 views

More Questions for you: