|
Posted by Brad Pauly on 09/26/92 11:05
On Mon, 10 Jan 2005 10:26:16 -0800, Chadwick, Russell
<Russell.Chadwick@infrastructuredev.com> wrote:
>
> Could anyone tell me why this code echos?
>
> <?php
> $value = 0;
> $curval = 'A';
> if ($value == $curval) {
> echo "WTH, Over<br>";
> }
> ?>
The string is converted to an integer when compared with an integer.
See this link for more info.
http://us3.php.net/manual/en/language.operators.comparison.php
Try using === instead.
Brad
Navigation:
[Reply to this message]
|