Importance of Class autoloading
Saturday, December 15th, 2007PHP 5 features: Class autoloading Many developers writing object-oriented applications create one PHP source file per-class definition. One of the biggest annoyances is having to write a long list of needed includes at the beginning of each script (one for each class). In PHP 5, this is no longer necessary. You may ...