php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #42578 [DE] error with case senisitive variable names in german translation
Submitted: 2007-09-06 14:00 UTC Modified: 2008-11-05 01:40 UTC
From: skaarj at gmx dot de Assigned: kalle (profile)
Status: Closed Package: Translation problem
PHP Version: Irrelevant OS: irrelvant
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: skaarj at gmx dot de
New email:
PHP Version: OS:

 

 [2007-09-06 14:00 UTC] skaarj at gmx dot de
Description:
------------
http://de2.php.net/manual/de/function.array-multisort.php

at example 214. (english "example" = german "Beispiel") is an error with case sensitive variable names

quote:

$data[] = array('Band' => 67, 'Auflage' => 2);
$data[] = array('Band' => 86, 'Auflage' => 1);
$data[] = array('Band' => 85, 'Auflage' => 6);
$data[] = array('Band' => 98, 'Auflage' => 2);
$data[] = array('Band' => 86, 'Auflage' => 6);
$data[] = array('Band' => 67, 'Auflage' => 7);

foreach ($data as $key => $row) {
    $band[$key]  = $row['band']; // <== error
    $auflage[$key] = $row['auflage']; // <== error
}


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-11-05 01:40 UTC] kalle@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-02-07 09:57 UTC] phpdocbot@php.net
Automatic comment on behalf of kalle
Revision: http://git.php.net/?p=doc/de.git;a=commit;h=dee728b824f95bcb9082a9fb1f7d1517001b9989
Log: Fixed #42578 ([DE] error with case senisitive variable names in german translation)
 [2020-12-30 11:15 UTC] nikic@php.net
Automatic comment on behalf of kalle
Revision: http://git.php.net/?p=doc/de.git;a=commit;h=60448fb27aa4cffcaa42ecec7b0737c945076c18
Log: Fixed #42578 ([DE] error with case senisitive variable names in german translation)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 01:01:30 2024 UTC