|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-11 11:37 UTC] sniper@php.net
[2003-06-18 15:11 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 07:00:02 2025 UTC |
<?php echo '<pre>'; $a = array(1, 2, 3); $a[1] = &$a; print_r($a); print_r(unserialize(serialize($a))); ?> Display: Array ( [0] => 1 [1] => Array *RECURSION* [2] => 3 ) Array ( [0] => 1 [1] => Array ( [0] => 1 [1] => [2] => 3 ) [2] => 3 )