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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 22:01:28 2024 UTC