News Feed
Jobs Feed
Sections




News Archive
PHPit.net:
Having fun with PHP's output buffer
April 17, 2006 @ 07:13:24

One of the more powerful and handy features that PHP offers is output buffering. It allows you more control over when the client's browser gets the information instead of just spewing information at random. It is a little tricky to get the hang of, so PHPit.net has put together this new tutorial on how to get started.

I'm sure most of us have come across the dreaded "Cannot modify header information - headers already sent", and this is usually caused when your script tries to send a header or set a cookie, when it's already sent output. The easiest fix is to make sure no output has been sent, but it's also possible to enable something called output buffering which also solves the problem.

In this article I'll first show you how output buffering works, and take you through most of its basic functions. After that we'll have a look at what's possible with output buffering, and show you some neat tricks.

The groundwork is laid first, giving a simple "Hello world" example to show how the code flows. They show how the buffering system works and how to use a callback function to modify the contents of the buffer before outputting (including a full replace function to text within the buffer from an array). They follow that with a look at creating your own HTML tags and using the gzip compression functionality to speed up your pages.

0 comments voice your opinion now!
output buffering example tutorial simple callback replace gzip output buffering example tutorial simple callback replace gzip


blog comments powered by Disqus

Similar Posts

Kevin Schroeder's Blog: A little more advanced ZF2 EventManager usage

Stefan Reuter's Blog: Profiling PHP Applications

WebReference.com: Data Filtering

Zend Developer Zone: AJAX Chat Part Tutorial 6 : Updating the User List

Stefan Priebsch's Blog: TDD in a self-experiment


Community Events











Don't see your event here?
Let us know!


community symfony2 opinion podcast testing database series zendframework2 development google introduction rest release conference framework functional interview phpunit usergroup language

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework