News Feed
Jobs Feed
Sections




News Archive
Pádraic Brady's Blog:
The Factory and Abstract Factory patterns in PHP
June 22, 2006 @ 07:25:51

Recently, Pádraic Brady had to explain some of the design patterns, specifically the Factory and Abstract Factory patterns, to someone (or a group of someones) in his day to day business. To help make it easier for other people out there looking for the same information, he's posted what he said on his blog today.

First, he talks about the Factory pattern:

At some point in developing, developers will discover a need to support switching among various methods of performing an action. The example I used in a forum post earlier was Database Abstraction. Say for a moment you want to separate all the logic needed to create an Abstraction object (say using ADOdb Lite) into a central place for easier control. At this point the Factory Pattern starts rearing its head.

Of course, a bit of sample code is given to illustrate the point, creating the instance of an ADOdb object.

Next up is the Abstract Factory pattern - the difference being that these make it easy to switch between Factories using different resource (such as his example to switch between ADODB and PDO).

In these cases, we will have multiple Factories. However instead of one generically named Factory, we will have several specific Factories. This should (eventually) lead us to impose a parent class, which will allow duplicated code from each specific DatabaseAbstractionFactory to be moved up to the common parent class.

Just as before, they provide example code to illustrate the use of this slightly different pattern.

1 comment voice your opinion now!
factory abstract pattern tutorial example explaination factory abstract pattern tutorial example explaination


blog comments powered by Disqus

Similar Posts

Volker Dusch's Blog: Textual code coverage information for PHPUnit

Label Media Blog: Design Patterns in PHP - Factory method

Brian Swan's Blog: SQL Server Driver for PHP Connection Options: Transaction Isolation Levels

Stefan Mischook's Blog: Creating Your Own Functions - Part 2

Josh Holmes' Blog: Hello World Azure in PHP


Community Events











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


unittest podcast interview functional code framework development example community release testing conference opinion tool introduction language zendframework2 application phpunit series

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