Posts for design-patterns
Lazy Loading in PHP with __autoload
__autoload is one of the magic methods added to PHP in version 5. It creates a very easy way for you to manage all your different class files. Actually, with __autoload you don’t ...
Design Patterns: Singleton
The singleton design pattern is a way of enforcing only one instance of an object. This is achieved by making 3 fairly simple steps to a class. Firstly ...