|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-10-26 11:52 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 08 14:00:02 2026 UTC |
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.