|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-01-18 01:25 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 21:00:01 2025 UTC |
Description: ------------ Wrong comparison between two strings. (Yes, I know about strict comparison, but I want to know about this case) Reproduce code: --------------- if ("0000" == "0e01") echo "BUG"; else echo "OK"; Expected result: ---------------- OK Actual result: -------------- BUG