Dan Anderson <mailto:[EMAIL PROTECTED]>
    on Wednesday, September 10, 2003 5:44 PM said:

> require_once() or include_once()
> 
> The files containing the class files before you need them.  They will
> only be loaded when needed that way.

Not true. www.php.net/require_once

The way I understand it (maybe you know something I don't?)
require/include_once only prevent an included file from being included
MORE than one time, hence the character string _once tacked onto the end
of include() and require().

It does NOT however include a file only when it's needed, it merely
includes it once.


Please correct me if I'm wrong.

Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to