Chadwick, Russell  wrote / napísal (a):


Could anyone tell me why this code echos?

<?php
$value = 0;
$curval = 'A';
if ($value == $curval) {
 echo "WTH, Over<br>";
}
?>



Try ===

If you use ==
$value is compared to $curval
$value is integer so
php converts $curval to integer
so it contains no digtis so
it assumes that $curval=0;
why it is.




trobi

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to