|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-11-29 13:02 UTC] peehaa@php.net
-Status: Open
+Status: Not a bug
[2019-11-29 13:02 UTC] peehaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 12:00:02 2025 UTC |
Description: ------------ Any string starting with @, like '@foo', compared to 0 (zero) resolves to true. Test script: --------------- var_dump('@foo' == 0); var_dump('@foo' === 0); Expected result: ---------------- false false Actual result: -------------- true false