|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-08-10 09:28 UTC] tony2001@php.net
[2006-08-10 09:33 UTC] pear dot 20 dot fab at spamgourmet dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 27 08:00:01 2025 UTC |
Description: ------------ The IF statement acts weird ... just have a look. Reproduce code: --------------- <?php if(0 == 'std') { echo "are you kidding?"; } else{ echo "alright"; } ?> Expected result: ---------------- alright Actual result: -------------- are you kidding?