<[EMAIL PROTECTED]> Lars Torben Wilson: > On Wed, 2003-07-23 at 18:21, Daryl Meese wrote: >> Well, I know I am not running the latest version of PHP but I don't >> believe this is accurate. I believe PHP case sensitivity is based >> on the os that processes the file. Can anyone clear this up. >> >> Daryl > > > OK: you're mistaken. If you're correct, it's a bug. I'm pretty sure we > would have heard about it by now. :) > > But give it a try and post your results (I don't have a Win PHP box > set up right now, myself).
PHP 4.3.2 and 5.0.0b1 on Windows <?php $a = "set"; print '$A is '; print isset($A) ? 'set' : 'unset'; print '<br>'; print '$a is '; print isset($a) ? 'set' : 'unset'; ?> $A is unset $a is set -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php