|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-07-31 03:33 UTC] reeze@php.net
-Package: *Programming Data Structures
+Package: Scripting Engine problem
[2013-07-31 10:14 UTC] nikic@php.net
-Status: Open
+Status: Wont fix
[2013-07-31 10:14 UTC] nikic@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 22:00:01 2025 UTC |
Description: ------------ The ';' should not be required at the end of an IF clause, as in if ($a > $b) {echo "a is greater than b";} else {echo "a is NOT greater than b";} if ($a > $b) {echo "a is greater than b"} else {echo "a is NOT greater than b"} should be correct.