*** empty log message ***

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20700 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sterling Hughes 2000-02-28 18:39:56 +00:00
parent 258fb4a35f
commit 1dd46e58ad

View file

@ -590,7 +590,7 @@ while ( ++$i ) {
<informalexample>
<programlisting role="php">
while (list ($key, $value) = each ($arr)) {
if ($key % 2) { // skip even members
if ($key % 2) { // skip odd members
continue;
}
do_something_odd ($value);