mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fixed incorrect example
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@119016 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
b5a9e8d809
commit
4edc895c90
1 changed files with 3 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.68 $ -->
|
||||
<!-- $Revision: 1.69 $ -->
|
||||
<chapter id="control-structures">
|
||||
<title>Control Structures</title>
|
||||
|
||||
|
@ -734,11 +734,9 @@ while ($i++ < 5) {
|
|||
<![CDATA[
|
||||
if ($i == 0) {
|
||||
print "i equals 0";
|
||||
}
|
||||
if ($i == 1) {
|
||||
} elseif ($i == 1) {
|
||||
print "i equals 1";
|
||||
}
|
||||
if ($i == 2) {
|
||||
} elseif ($i == 2) {
|
||||
print "i equals 2";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue