[PHP-DEV] Bug #11168 Updated: Problem with serializing more dimensional array with references ... From: sander <email protected>
Date: 08/31/01

ID: 11168
Updated by: sander
Reported By: maverick <email protected>
Old Status: Open
Status: Duplicate
Old Bug Type: Scripting Engine problem
Bug Type: Feature/Change Request
Operating System: RedHat
PHP Version: 4.0.5
New Comment:

Not a bug.
Making it a feature request.
Duplicate of 10863.

Previous Comments:
------------------------------------------------------------------------

[2001-05-29 08:17:03] maverick <email protected>

Here is the smallest programm I could make to reproduce the problem.

<?
    $a[0][0]="Ape1";
    $a[1][0]="Ape2";
    $a[0][one]=&$a[0][0];
    $a[1][two]=&$a[1][0];

    $wrong_a=unserialize( serialize ( $a) );
    echo "Wrong:\n";
    print_r( $wrong_a );
    echo "Right:\n";
    print_r( $a );
?>

------------------------------------------------------------------------

Edit this bug report at http://bugs.php.net/?id=11168&edit=1

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>