well ok, if it's :
main.php :
include 'foo';
foo :
include 'bar';
bar :
include 'whatever';
...
there will be lots of used file descriptors at once
Leon Mergen wrote:
"Stephan Seidt" <[EMAIL PROTECTED]> schreef in bericht
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
I guess that PHP will close file 1 before it opens
file 2 and so on.. For example :
include 'foo';
include 'bar';
When bar is being opened foo is already closed.
Hmmm, i think the parser is built recursive, so at the moment it sees an
"include 'foo';" , it will look in foo, parse that one, and after it has
finished foo, it will continue with the main script...
--
I won't pay Bills'
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php