php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #31815 Small error in Polish documentation of each function
Submitted: 2005-02-02 15:24 UTC Modified: 2005-02-02 15:46 UTC
From: p dot tomicki at pafka dot com Assigned:
Status: Closed Package: Documentation problem
PHP Version: Irrelevant OS: Any
Private report: No CVE-ID: None
 [2005-02-02 15:24 UTC] p dot tomicki at pafka dot com
Description:
------------
I have found en error in Polish documentation each function 
(http://pl.php.net/manual/pl/function.each.php)

Error is in line 

"while (list ($key, $val) = each (_POST)) {"

there should be 

"while (list ($key, $val) = each ($_POST)) {" 

Reproduce code:
---------------
Przyk?ad 2. Przechodzenie przez $HTTP_POST_VARS u?ywaj?c each()
echo "Warto?ci wys?ane metod? POST: <br />\n";
reset ($_POST);
while (list ($key, $val) = each (_POST)) {
   echo "$key => $val<br />\n";
}


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-02-02 15:46 UTC] didou@php.net
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.
 [2020-12-30 10:43 UTC] nikic@php.net
Automatic comment on behalf of didou
Revision: http://git.php.net/?p=doc/pl.git;a=commit;h=65c2549f8bb2e50f71e7480aadefc97d941a15cf
Log: fix #31815: missing dollar sign
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Nov 20 08:00:01 2025 UTC