Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:7798 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 94962 invoked by uid 1010); 12 Feb 2004 21:13:25 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 94869 invoked from network); 12 Feb 2004 21:13:24 -0000 Received: from unknown (HELO longsword.omniti.com) (66.80.117.3) by pb1.pair.com with SMTP; 12 Feb 2004 21:13:24 -0000 Received: from ip-66-80-117-2.nyc.megapath.net ([66.80.117.2] helo=[10.80.116.129]) by longsword.omniti.com with asmtp (TLSv1:RC4-SHA:128) (Exim 4.14) id 1ArO9E-0002MC-FI; Thu, 12 Feb 2004 16:13:24 -0500 In-Reply-To: <402BEBC4.10804@dealnews.com> References: <402BE8B7.90103@dealnews.com> <402BEBC4.10804@dealnews.com> Mime-Version: 1.0 (Apple Message framework v612) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-ID: <74757AEC-5DA0-11D8-AA0A-000393B2B3C0@omniti.com> Content-Transfer-Encoding: 7bit Cc: Derick Rethans , internals@lists.php.net Date: Thu, 12 Feb 2004 16:14:33 -0500 To: Brian Moon X-Mailer: Apple Mail (2.612) Subject: Re: [PHP-DEV] Bug #26665 From: george@omniti.com (George Schlossnagle) On Feb 12, 2004, at 4:10 PM, Brian Moon wrote: >> That one is set to Won't fix due to limitations in PHP 4 and it's >> fixed >> in PHP 5. > > Hmmm, then why can I use multiple files to create the array? PHP only > crashes if I use a single file to create the array. Without looking too deeply it looks like a stack smash due to the way temporary variables are allocated from stack memory. Different execution scope == different stack, so if my hunch is correct that would be why. George