Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:13710 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 88208 invoked by uid 1010); 3 Nov 2004 15:42:24 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 87569 invoked from network); 3 Nov 2004 15:42:19 -0000 Received: from unknown (HELO mail.gmx.net) (213.165.64.20) by pb1.pair.com with SMTP; 3 Nov 2004 15:42:19 -0000 Received: (qmail 6627 invoked by uid 65534); 3 Nov 2004 15:42:18 -0000 Received: from 55.Red-213-4-20.pooles.rima-tde.net (EHLO [10.10.0.21]) (213.4.20.55) by mail.gmx.net (mp013) with SMTP; 03 Nov 2004 16:42:18 +0100 X-Authenticated: #12441595 Message-ID: <41890B41.5020703@gmx.net> Date: Wed, 03 Nov 2004 17:45:53 +0100 User-Agent: Mozilla Thunderbird 0.8 (X11/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Andrey Hristov CC: internals References: <4188DEC8.5060309@gmx.net> <4188DDC9.30000@hristov.com> <4189013F.2050104@gmx.net> <4188F4CC.6000902@hristov.com> In-Reply-To: <4188F4CC.6000902@hristov.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] serialize bug with array that references to itself? From: fmmarzoa@gmx.net ("Francisco M. Marzoa Alonso") BTW., I'm not sure that there's nothing more wrong here. Takin the first part of the code of first example: It returns: array(1) { ["self"]=> array(1) { ["self"]=> *RECURSION* } } Is that as its expected to be? I meant that perhaps it should be: array(1) { ["self"]=> *RECURSION* } Since the element in $Arr['self'] is yet (or at least should be) a reference to itself...