|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-02-09 08:39 UTC] rasmus
[2020-02-19 10:21 UTC] nikic@php.net
[2021-02-24 21:09 UTC] langemeijer@php.net
[2024-08-15 11:34 UTC] git@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 16 15:00:02 2025 UTC |
In the docs on the part about elseif it has: if ($a>$b) { print "a is bigger than b"; } elseif { print "a is equal to b"; } else { print "a is smaller than b"; } I think it's missing the ($a=$b) in the elseif.