| vrana@php.net 2004-10-29, 8:56 am |
| ID: 30612
Updated by: vrana@php.net
-Summary: control-structures.foreach de: syntax error
Reported By: andreas at windischer dot at
Status: Bogus
Bug Type: Documentation problem
PHP Version: Irrelevant
New Comment:
It's wrong in German translation at
http://de.php.net/manual/de/control...res.foreach.php page. I sent
it to doc-de.
Previous Comments:
------------------------------------------------------------------------
[2004-10-29 12:55:07] derick@php.net
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
|