Archive for April 26th, 2008

Lazy Loading in PHP with __autoload

Saturday, April 26th, 2008

__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 need to manage them.
Often you will see in PHP projects files that include the other files needed for that page. You can [...]