mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fixed broken example ( Bug id #3654 )
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20777 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
c8d56c9cb6
commit
324f6e6acd
1 changed files with 1 additions and 1 deletions
|
@ -590,7 +590,7 @@ while ( ++$i ) {
|
|||
<informalexample>
|
||||
<programlisting role="php">
|
||||
while (list ($key, $value) = each ($arr)) {
|
||||
if ($key % 2) { // skip odd members
|
||||
if (!($key % 2)) { // skip odd members
|
||||
continue;
|
||||
}
|
||||
do_something_odd ($value);
|
||||
|
|
Loading…
Reference in a new issue