Archive for March, 2009

Automatically Loading Classes & Modules in PHP

Any serious developer will tell you, __autoload is your friend. It greatly reduces your application’s memory footprint in complex web applications by only loading classes when they’re actually needed, and can take the pain out of adding new features. This is especially useful in MVC framework development. That said, while working on my own MVC [...]

programming - PHP