|
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-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Feb 10 20:00:01 2026 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