Hi btanner!
On Sun, 29 Jul 2001, [EMAIL PROTECTED] wrote:
> From: [EMAIL PROTECTED]
> Operating system: Win2k
> PHP version: 4.0.6
> PHP Bug Type: Scripting Engine problem
> Bug description: comparing 0=="null" is true?
>
> If you compare the integer(0) to the string "null", PHP thinks they are the
> same.
>
> Am I hopped up on goofballs, or whats up here?
>
> $MyVar=0;
> if($MyVar=="null")
> print("apparently $MyVar is equal to \"null\"");
try intval("null") to see why
$MyVar isn't converted to string, "null" is converted to int.
-- teodor
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]