Posted by Nu on 02/01/07 08:22
"Sanders Kaufman" <bucky@kaufman.net> wrote in message
news:Klgwh.2288$4H1.1860@newssvr17.news.prodigy.net...
> Nu wrote:
>
> > Also, does it matter if I put "require_once" lower down in the code
after
> > some other code my abort it?
>
> No - and you may find this weird.
> An include/require will be included no matter what.
>
> For example:
> <? php
> if(TRUE){
> include "myfile.php";
> } else {
> include "yourfile.php";
> }
> ?>
>
> In the above example - BOTH files will be included no matter what.
I have seen code like this:
if ( file_exists( "$IP/languages/classes/$class.deps.php" ) ) {
include_once("$IP/languages/classes/$class.deps.php");
}
It appears not to load the file unless an if statement passes.
Navigation:
[Reply to this message]
|