From:             waps at pisem dot net
Operating system: Win Vista x32 Business
PHP version:      5.2.6
PHP Bug Type:     Scripting Engine problem
Bug description:  SWITCH statement incorrect

Description:
------------
SWITCH statement incorrect work from data types. In exemple I write code.

Reproduce code:
---------------
$strCode = 0;
switch( $strFileType )          
{
        case 'jpg':
        case 'jpeg':
                echo 'point 0';
                break;
        case 'gif':
                echo 'point 1';
                break;
        default:
                echo 'point 3';
}

Expected result:
----------------
echo string "point 0"

Actual result:
--------------
I have to view "point 3", but no "point 0"

-- 
Edit bug report at http://bugs.php.net/?id=45163&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=45163&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=45163&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=45163&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=45163&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=45163&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=45163&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=45163&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=45163&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=45163&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=45163&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=45163&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=45163&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=45163&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=45163&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=45163&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=45163&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=45163&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=45163&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=45163&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=45163&r=mysqlcfg

Reply via email to