php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #43890 function changes the internal pointer of its array parameter
Submitted: 2008-01-18 20:47 UTC Modified: 2008-02-02 01:00 UTC
From: jwang at navarik dot com Assigned:
Status: No Feedback Package: Arrays related
PHP Version: 5.2.5 OS:
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: jwang at navarik dot com
New email:
PHP Version: OS:

 

 [2008-01-18 20:47 UTC] jwang at navarik dot com
Description:
------------
The function which is supposed to get a copy of the original array and never mess the original array magically changed the internal pointer of the original array. Noticed it doesn't change the pointer if foreach just loop though the array itself (this seems to be fixed in #40705). However, as it is in the repro code, I loop though a subelement of the array, it still changes the pointer.


Reproduce code:
---------------
<?php

function a($arr)

{

        foreach($arr['k'] as $r)

        {

        }

}

 

$arr = array(

        'k' => array(1)

);

a($arr);

var_dump(current($arr['k']));

Expected result:
----------------
int(1)


Actual result:
--------------
bool(false)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-02-02 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 22:01:31 2024 UTC