> Since you can no longer do:
>
> if(!defined(_FOO_INC)):
> define('_FOO_INC',1);
>
> ...
>
> endif;
>
> to protect a file from multiple inclusion within the file itself, some
This is still a valid construct. I could find nothing in the discussion that
would indicate otherwise. The only thing that does not work now, and it did
before was:
if(!defined(_FOO_INC)):
define('_FOO_INC',1);
return;
endif;
...
...
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]