Re: [PHP-DOC] Error in require_once() documentation

2004-07-16 Thread Antony Dovgal
On Fri, 16 Jul 2004 10:20:56 +0200 "Michele Locati" <[EMAIL PROTECTED]> wrote: > Hi > > I noticed an little mistake in the documentation of the require_once() > function. > > Here you say: > "Example 11-8. require_once() is case insensitive on Windows" > > It should be > "Example 11-8. require

Re: [PHP-DOC] Error in require_once() documentation

2004-07-16 Thread Jakub Vrana
Michele Locati wrote: > In fact: >require_once('a_file.php'); > is seen by require_once() as different from >require_once('A_File.php'); > even if the file is the same on Windows What's your PHP and Windows version? This function is case insensitive on my Windows box. Jakub Vrana

[PHP-DOC] Error in require_once() documentation

2004-07-16 Thread Michele Locati
Hi I noticed an little mistake in the documentation of the require_once() function. Here you say: "Example 11-8. require_once() is case insensitive on Windows" It should be "Example 11-8. require_once() is case sensitive on Windows" (insensitive => sensitive) In fact: require_once('a_file.