Re: [PHP] Re: include/require vs performance

2003-01-03 Thread Stephan Seidt
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 c

Re: [PHP] Re: include/require vs performance

2003-01-03 Thread Leon Mergen
"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 par

Re: [PHP] Re: include/require vs performance

2003-01-03 Thread Stephan Seidt
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. Leon Mergen wrote: "Radek Zajkowski" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED]... Is there, was there ever issu

[PHP] Re: include/require vs performance

2003-01-03 Thread Leon Mergen
"Radek Zajkowski" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED]... > Is there, was there ever issue around including a lot files via > include(). I am running things on a local server so it's hard to gauge. I think that the only source that could cause any problems with too many f