Re: [PHP] set_include_path() isn't persistent

2004-11-08 Thread Skippy
On Tue, 9 Nov 2004 01:39:03 +1100 Justin French <[EMAIL PROTECTED]> wrote: > > On 09/11/2004, at 1:26 AM, John Nichel wrote: > > > Justin French wrote: > >> Hi, > >> Experimenting with set_include_path(), but it would appear that it > >> doesn't persist for the duration of the request, just the

Re: [PHP] set_include_path() isn't persistent

2004-11-08 Thread Justin French
On 09/11/2004, at 1:19 AM, Justin French wrote: Experimenting with set_include_path(), but it would appear that it doesn't persist for the duration of the request, just the current script. Actually, it does apply to included files... I just ed up my paths :) Justin -- PHP General Mailing Li

Re: [PHP] set_include_path() isn't persistent

2004-11-08 Thread Justin French
On 09/11/2004, at 1:26 AM, John Nichel wrote: Justin French wrote: Hi, Experimenting with set_include_path(), but it would appear that it doesn't persist for the duration of the request, just the current script. That is to say, an included file will not inherit the include_path() of the parent

Re: [PHP] set_include_path() isn't persistent

2004-11-08 Thread John Nichel
Justin French wrote: Hi, Experimenting with set_include_path(), but it would appear that it doesn't persist for the duration of the request, just the current script. That is to say, an included file will not inherit the include_path() of the parent file. Is there any way to persist this withou

[PHP] set_include_path() isn't persistent

2004-11-08 Thread Justin French
Hi, Experimenting with set_include_path(), but it would appear that it doesn't persist for the duration of the request, just the current script. That is to say, an included file will not inherit the include_path() of the parent file. Is there any way to persist this without re-setting it on ea