Re: [PHP-DEV] Case sensitivity

2008-11-08 Thread Lester Caine
Lukas Kahwe Smith wrote: On 06.11.2008, at 18:46, Stan Vassilev | FM wrote: NOTE: Continuing from thread Call it: allow reserved words in a class or not?: As much as I'd love to see more case-sensitivity, I'm afraid it would break quite a lot of existing apps, according to Google Code.

[PHP-DEV] Case sensitivity

2008-11-06 Thread Stan Vassilev | FM
NOTE: Continuing from thread Call it: allow reserved words in a class or not?: As much as I'd love to see more case-sensitivity, I'm afraid it would break quite a lot of existing apps, according to Google Code. http://www.google.com/codesearch?q=lang%3Aphp+%3D%5Cs%2AArray -JD It's worse

Re: [PHP-DEV] Case sensitivity

2008-11-06 Thread Lukas Kahwe Smith
On 06.11.2008, at 18:46, Stan Vassilev | FM wrote: NOTE: Continuing from thread Call it: allow reserved words in a class or not?: As much as I'd love to see more case-sensitivity, I'm afraid it would break quite a lot of existing apps, according to Google Code.

[PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Jakub Vrana
File a.php is required twice with this code on Windows: ?php require_once a.php; require_once A.php; ? Should I document this behavior or should patch similar to this be applied? Index: zend_execute.c === RCS file:

Re: [PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Wez Furlong
Did you test require_once under PHP 5 yet? (without your patch) --Wez. On Mon, 19 Jul 2004 10:56:02 +0200, Jakub Vrana [EMAIL PROTECTED] wrote: File a.php is required twice with this code on Windows: ?php require_once a.php; require_once A.php; ? Should I document this behavior or should

Re: [PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Antony Dovgal
On Mon, 19 Jul 2004 11:12:58 +0100 Wez Furlong [EMAIL PROTECTED] wrote: Did you test require_once under PHP 5 yet? (without your patch) Yep. http://lists.php.net/php.doc/969361918 --- WBR, Antony Dovgal aka tony2001 [EMAIL PROTECTED] || [EMAIL PROTECTED] -- PHP Internals - PHP Runtime

Re: [PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Jakub Vrana
Wez Furlong wrote: Did you test require_once under PHP 5 yet? (without your patch) This behavior is PHP 4 specific. Antony Dovgal wrote: http://lists.php.net/php.doc/969361918 The problem is not that the file isn't included at all. The problem is that the file is included twice. Jakub Vrana

Re: [PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Antony Dovgal
On Mon, 19 Jul 2004 14:45:12 +0200 Jakub Vrana [EMAIL PROTECTED] wrote: Wez Furlong wrote: Did you test require_once under PHP 5 yet? (without your patch) This behavior is PHP 4 specific. Antony Dovgal wrote: http://lists.php.net/php.doc/969361918 The problem is not that the file

Re: [PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Michele Locati
There's another thing you should note: under Windows it is possible to specify file names in two ways: in the expanded (normal) way, and in a short way (8.3 file naming compatible). For example: C:\Program Files\SomeFileName.ext could be specified also as

Re: [PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Stanislav Malyshev
MLThere's another thing you should note: under Windows it is possible to MLspecify file names in two ways: in the expanded (normal) way, and in a MLshort way (8.3 file naming compatible). I think there's a function in Win32 API which brings all these forms to common base. -- Stanislav

Re: [PHP-DEV] Case sensitivity of require_once

2004-07-19 Thread Paul G
- Original Message - From: Stanislav Malyshev [EMAIL PROTECTED] To: Michele Locati [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, July 19, 2004 8:55 AM Subject: Re: [PHP-DEV] Case sensitivity of require_once MLThere's another thing you should note: under Windows it is possible