Posted by Greg Donald on 06/02/05 21:27
On 6/2/05, GamblerZG <gambler@highstream.net> wrote:
> Maybe it's just me, but the core concept of __autoload() seems to be
> broken to me. Moreover, every proposed solution I've heard about is
> totally inside the box. I would do it like this:
> 1) Define $_AUTOLOAD superglobal.
When forced to do OO, I use it like this:
function __autoload( $class )
{
require_once( "$GLOBALS[LIB_PATH]/$class.class.php" );
}
--
Greg Donald
Zend Certified Engineer
http://destiney.com/
[Back to original message]
|