From:             hipolitoalvarez at yahoo dot com dot ar
Operating system: Windows/Apache2
PHP version:      4.4.4
PHP Bug Type:     *Programming Data Structures
Bug description:  Problem with IF sentence

Description:
------------
The problem begins when i compare an expression in IF sentence.
When i compare a STRING with another STRING(component of array).

For example: if ($b != $a[$x]) this always gives me a TRUE even if $b=3
and $a[$x]=3.

For example: if ($b == $a[$x]) this always gives me a FALSE even if $b=3
and $a[$x]=3.

Reproduce code:
---------------
example: $indice(ARRAY) = 1 | 2 | 3 | 4 | 5 |
example: $id = 3
<?
$cant = count($indice);
$id = $_POST[cual];
$x = 0;
while ($x < $cant){
if ($id <> $indice[$x]) {
...several sentences...
}
$x++;
}
?>



Expected result:
----------------
Ill expect when the "if" sentence compare the expression, if the values
are equals, expression begin FALSE, if are not equals, expression begin
TRUE, but are always TRUE even when bot variables have the same value.
If i change the disctinct comparation sign (<> or !=) to an equal sign (==
or ===) always give me the result of FALSE, so dont enter into IF sentence.


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

Reply via email to