php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39840 rewrite a multidimensional array causes a bug?
Submitted: 2006-12-15 05:16 UTC Modified: 2006-12-15 09:32 UTC
From: wesborland at email dot it Assigned:
Status: Not a bug Package: Arrays related
PHP Version: 5.2.0 OS: Windows XP SP2
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 you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: wesborland at email dot it
New email:
PHP Version: OS:

 

 [2006-12-15 05:16 UTC] wesborland at email dot it
Description:
------------
replacing an array with a multidimensional array causes a variable overlap

Reproduce code:
---------------
<?php
	$show[0] = "james";
        // php must unset($show[0]);
	$show[0][1] = "kirk";
		
	echo("<pre>");
        print_r($show);
        echo("</pre>");
		
        foreach($show as $bb => $aa)
            echo $bb . " -- " . $aa;
?>

Expected result:
----------------
Array
(
    [0] => Array
        (
            [1] => kirk
        )

)

0 -- Array

Actual result:
--------------
Array
(
    [0] => jkmes
)

0 -- jkmes

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-12-15 09:32 UTC] 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

.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue May 13 10:01:27 2025 UTC