From: [EMAIL PROTECTED]
Operating system: RISC OS
PHP version: 4.1.0
PHP Bug Type: Variables related
Bug description: switch() problem: "+" matches "-"
<? $k = "+";
switch($k) {
case "-": print "Oh no!";
case "+": print "Correct!";
}
?>
outputs "Oh no!". I guess this is because as switch uses
==, + and - are both being automatically converted to the
number 0 which then matches? Could switch() perhaps use
=== instead of == in its comparison?
--
Edit bug report at: http://bugs.php.net/?id=15010&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]