At 07:14 PM 7/8/01 +0300, Andi Gutmans wrote:
>Hey,
>
>I think one thing that bothers PHP developers is when they do:
>include "../foo.inc";
>and in foo.inc they do:
>include "bar.inc";
>
>That bar.inc is not searched for in foo.inc's current directory 
>automatically. As we pretty much always have the expanded filename of the 
>current executing script I thought it would be nice to add that if bar.inc 
>is not found in the include_path to take the full path of foo.inc (i.e. 
>/path/to/foo_inc/foo.inc) and try opening /path/to/foo_inc/bar.inc.
>
>What do you guys think?
>
>Andi

I was just wishing for this sort of behavior earlier last week. Especially 
when bar.inc may need to be included in several files in two or three 
different directories, and the entire application needs to be portable.

John


-- 
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]

Reply via email to