Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 2.68 KB

fBuffer.wiki

File metadata and controls

87 lines (64 loc) · 2.68 KB

Table of Contents

fBuffer

<<css mode="next" class="sidebar"></css>> (((

Class Resources <<toc></toc>>

 - '''<a href="/docs/fBuffer">Class Documentation</a>'''
 - <a href="/api/fBuffer">API Reference</a>
 - <a href="https://github.com/flourishlib/flourish-classes/blob/master/fBuffer.php" target="_blank">Source Code</a>

<<toc></toc>> )))

The fBuffer class is a fairly straight-forward static class designed to make the output buffer functions in PHP a little more user-friendly. Only a single level of buffering is supported, however it has been supplemented with buffer capture support and replace functionality.

Output buffering is essential if you wish to change the headers a page sends after some of the output has been sent, and is also utilized by the fTemplating class for fully buffered output that allows changing values until right before the buffer is sent to the user.

Starting and Stopping

Normally when using the output buffer function you call `ob_start()` to start output buffering and one of the `ob_end_*()` methods to stop buffering. The fBuffer class instead uses the ::start() and ::stop() methods. Here is an example:

Gzip compression of the output buffer can be turned (if the zlib extension is installed) by passing `TRUE` to `start()`.

You can check to see if buffering has been started by calling ::isStarted():

Getting, Erasing and Replacing

To get the current contents of the output buffer, simply call ::get():

If you wish to get rid of the buffered contents, call ::erase():

Also sometimes useful is the ability to replace a given string in the buffer with another. In this situation you can use the ::replace() method:

Capturing

Some of the built-in PHP functions (and other third party code) will only output content, as opposed to returning it for further processing. The fBuffer class provides two methods, ::startCapture() and ::stopCapture(), that make it easy to intercept such output.