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