Posted by Trobi on 10/04/03 11:05
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
Navigation:
[Reply to this message]
|