From:             [EMAIL PROTECTED]
Operating system: Win2000 sp2
PHP version:      4.0.6
PHP Bug Type:     Scripting Engine problem
Bug description:  string + 'true', types misunderstanding (?)

Hmm... why is that ?
Am I reading manual too briefly, or is there something with the operators ?
might be bogus, but please enlighten me:P

btw: I thought that there's no seperate boolean type =]

<?
function foo(){
        return true;
}

if(foo() == 'whatever you like'){
        echo '!?!? why is that equal ?';
}
?>

<?
function paranoid(){
        return 1;
}

if(!(paranoid() == (string) 'whatever you like')){
        echo 'hmm??';
}
?>
-- 
Edit bug report at: http://bugs.php.net/?id=12674&edit=1


-- 
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]

Reply via email to