Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

PHPEasy.co.uk:
Design Patterns - The Singleton Pattern
Jul 16, 2012 @ 15:54:40

PHPEasy.co.uk has a new tutorial posted introducing one of the most common (and often misused) design patterns out there - the Singleton pattern.

In this first tutorial in the design pattern series we are going to investigate and implement the singleton design pattern. [...] A design pattern is a common solution to a given problem, problems in programming tend to recur and we often find ourselves trying to solve the same issues over and over. The common techniques that provide solutions to these problems can be referred to as design patterns.

He talks about some of the most common uses for the Singleton pattern (mainly replacing a global variable) and includes an example of using one to fetch a database object.

tagged: singleton designpattern tutorial example

Link:


Trending Topics: