ID: 29977 Updated by: [EMAIL PROTECTED] Reported By: hd dot php at aimail dot de Status: Open -Bug Type: Variables related +Bug Type: Documentation problem Operating System: linux PHP Version: 4.3.10 / 5+ New Comment:
Document it. Previous Comments: ------------------------------------------------------------------------ [2004-09-05 10:04:55] [EMAIL PROTECTED] "00" is a string, like any other string. The only other string that will evaluate to false is "0". This may, however, be something we should fix, and at the very least document - what do others think? TRUE: $ php -r 'var_dump((bool)"00");' FALSE: $ php -r 'var_dump((bool)"0");' ------------------------------------------------------------------------ [2004-09-04 01:22:36] hd dot php at aimail dot de Description: ------------ * PHP Version 4.3.4 * bool cast of "0000000000000" should be false, not true. A "0000000000000" is returned from mysql timestamp fields. (bool)"0000000000000" should be consistent with (bool)(int)"0000000000000" At this point it is not. Reproduce code: --------------- <? echo((bool)"0000000000000"?"true":"false"); ?> Expected result: ---------------- false Actual result: -------------- true ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=29977&edit=1
