News Feed
Jobs Feed
Sections




News Archive
Label Media Blog:
Design Patterns in PHP - Decorator Pattern
December 08, 2010 @ 09:13:55

Tom Rawcliffe has posted the latest installment of his look at design patterns in PHP. This time his focus is on the Decorator pattern.

Continuing my series on PHP design patterns, today it's the turn of the Decorator. In contrast to last week's Strategy Pattern which is used to change the 'guts' of a class, the Decorator Pattern is used to extend the behavior of a class with different functionality at run time. This is achieved by implementing a 'decorator' class that implements the same interface as the object that you wish to 'decorate' and wraps it's content.

The Decorator pattern lets you "decorate" your objects with additional features. He illustrates with a sample "Property" class (that implements an interface) that he wants to extend past the normal property handling. He add a "PropertyDecorator" to the mix that lets it use deocrators for uppercasing and padding the string. There's an example script included at the end that shows how to put it all to use.

0 comments voice your opinion now!
decorator designpattern tutorial property


blog comments powered by Disqus

Similar Posts

PHPHacks.com: How to create an Ajax RSS reader with PHP

DevShed: Tracking Website Statistics with PHP

Miro Svrtan: Debugging Uploadify jQuery plugin with XDebug

DevShed: Building Object-Oriented Web Pages with Inheritance in PHP 5

PHPit.net: Handling dates and times in PHP & MySQL


Community Events











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


release application phpunit development composer framework opinion community introduction api podcast code interview zendframework2 testing language series example functional database

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