|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-06-05 05:32 UTC] laruence@php.net
-Status: Open
+Status: Not a bug
[2012-06-05 05:32 UTC] laruence@php.net
[2012-06-05 05:36 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 14:00:01 2025 UTC |
Description: ------------ this problom may happen in PHP5.2~5.4 <?php echo '0X00' == '0E04'; //return 1 if ('0X00' == '0E04') { echo '0X00 = 0E04'; //the answer is true?! } ?> Test script: --------------- <?php echo '0X00' == '0E04'; //return 1 if ('0X00' == '0E04') { echo '0X00 = 0E04'; //the answer is true } ?> Expected result: ---------------- if ('0X00' == '0E04') this should return false.