php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #69705 [TR]​ When this page is translated, $value variable unchanged!
Submitted: 2015-05-25 10:36 UTC Modified: 2016-04-06 10:33 UTC
From: melihozdemir72 at gmail dot com Assigned: cmb (profile)
Status: Closed Package: Translation problem
PHP Version: 5.6.9 OS: N/a
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: melihozdemir72 at gmail dot com
New email:
PHP Version: OS:

 

 [2015-05-25 10:36 UTC] melihozdemir72 at gmail dot com
Description:
------------
---
From manual page: http://www.php.net/control-structures.foreach
---
​When this page is translated to Turkish language $value variable name should be as $değer, otherwise array values can not change as it is supposed in the code example.

Test script:
---------------
<?php
$dizi = array(1, 2, 3, 4);
foreach ($dizi as &$değer) {
    $değer = $değer * 2;
}
// $dizi artık array(2, 4, 6, 8) olmuştur
unset($değer); // son eleman da işlendiğine göre gönderimi kaldıralım
?>


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-05-25 10:52 UTC] cmb@php.net
-Summary: ​When this page is translated to Turkish language $value variable unchanged! +Summary: [TR]​ When this page is translated, $value variable unchanged! -Status: Open +Status: Verified -Operating System: +Operating System: N/a
 [2016-04-06 10:32 UTC] cmb@php.net
Automatic comment from SVN on behalf of cmb
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=338938
Log: fixed #69705 ([TR]​ When this page is translated, $value variable unchanged!)
 [2016-04-06 10:33 UTC] cmb@php.net
-Status: Verified +Status: Closed -Assigned To: +Assigned To: cmb
 [2016-04-06 10:33 UTC] cmb@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:46 UTC] nikic@php.net
Automatic comment on behalf of cmb
Revision: http://git.php.net/?p=doc/tr.git;a=commit;h=cee4d1b8e347373ffabe541d8a67323b421c5672
Log: fixed #69705 ([TR]​ When this page is translated, $value variable unchanged!)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon May 06 16:01:33 2024 UTC