Re: [PHP] PHP Memory Leak

2007-12-07 Thread Jim Lucas
Sascha Braun wrote: Hi Everybody, I have a couple of foreach loops which are ending in a for loop, which causes the apache to consume the complete memory of the server system the php engine is running on. The nesting level is at round about three and looking like that: $num_new = 4; if

[PHP] PHP Memory Leak

2007-12-06 Thread Sascha Braun
Hi Everybody, I have a couple of foreach loops which are ending in a for loop, which causes the apache to consume the complete memory of the server system the php engine is running on. The nesting level is at round about three and looking like that: $num_new = 4; if (is_array($array)) {

Re: [PHP] PHP Memory Leak

2007-12-06 Thread Chris
Sascha Braun wrote: Hi Everybody, I have a couple of foreach loops which are ending in a for loop, which causes the apache to consume the complete memory of the server system the php engine is running on. The nesting level is at round about three and looking like that: $num_new = 4; if

Re: [PHP] PHP Memory Leak

2007-12-06 Thread Casey
On Dec 6, 2007, at 3:15 PM, Sascha Braun [EMAIL PROTECTED] wrote: Hi Everybody, I have a couple of foreach loops which are ending in a for loop, which causes the apache to consume the complete memory of the server system the php engine is running on. The nesting level is at round about