ID:          30612
 Updated by:  [EMAIL PROTECTED]
 Reported By: andreas at windischer dot at
-Status:      Bogus
+Status:      Closed
 Bug Type:    Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:
------------------------------------------------------------------------

[2004-10-29 13:04:59] [EMAIL PROTECTED]

It's wrong in German translation at
http://de.php.net/manual/de/control-structures.foreach.php page. I sent
it to doc-de.

------------------------------------------------------------------------

[2004-10-29 12:55:07] [EMAIL PROTECTED]

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Of course this is going to give a parse error, you have broken code.

------------------------------------------------------------------------

[2004-10-29 12:39:59] andreas at windischer dot at

Description:
------------
"}" after "?>"-Tag

Reproduce code:
---------------
<?php
$arr = array("eins", "zwei", "drei");
reset ($arr);
while (list(, $value) = each ($arr)) {
   echo "Wert:  $value<br />\n";
}

foreach ($arr as $value) {
   echo "Wert:  $value<br />\n";
?>
} 

Expected result:
----------------
<?php
$arr = array("eins", "zwei", "drei");
reset ($arr);
while (list(, $value) = each ($arr)) {
   echo "Wert:  $value<br />\n";
}

foreach ($arr as $value) {
   echo "Wert:  $value<br />\n";
}
?>



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=30612&edit=1

Reply via email to