ID: 14605 Updated by: derick Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Scripting Engine problem Operating System: Windows NT 4 sp 6a PHP Version: 4.1.0 New Comment:
Use === instead of == Derick Previous Comments: ------------------------------------------------------------------------ [2001-12-19 11:21:33] [EMAIL PROTECTED] this i due to the autoconversation of variables in PHP. Your string is converted into an integer during the comparison.The integer is 0, since no fitting value can be found. So 0 equals 0. ------------------------------------------------------------------------ [2001-12-19 11:11:09] [EMAIL PROTECTED] <?php $i = 0; $s = 'the string'; if($i == $s) { echo "'$s' == $i"; } else { echo "'$s' != $i"; } ?> // This outputs 'the string' == 0 ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=14605&edit=1 -- 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]