Re: [PHP-DEV] (non)growing memory while creating anoymous functions via eval()

2013-02-27 Thread Hans-Jürgen Petrich
Am 25.02.2013, 20:03 Uhr, schrieb Terry Ellison : On 03/02/13 15:27, Hans-Juergen Petrich wrote: In this example (using php-5.4.11 on Linux) the memory will grow non-stop: for ( $fp = fopen('/dev/urandom', 'rb'); true;) { eval ('$ano_fnc = func

Re: [PHP-DEV] (non)growing memory while creating anoymous functions via eval()

2013-02-06 Thread Hans-Jürgen Petrich
Am 05.02.2013, 20:53 Uhr, schrieb Terry Ellison : On 04/02/13 10:57, Ángel González wrote: The memory will stop growing (on my machine) at ~2491584 bytes and the loop is able to run forever, creating each eval() furthermore uniqe ano-function's but not endless-filling Zend-inter

Re: [PHP-DEV] (non)growing memory while creating anoymous functions via eval()

2013-02-04 Thread Hans-Jürgen Petrich
Am 04.02.2013, 17:57 Uhr, schrieb "Ángel González" : Hans-Jürgen Petrich wrote: Hi Terry and all thank you very much for your response. The only thing that confused me about what you say that the second *doesn't* grow Yes, about that i was [and am still :-)] also confused...

Re: [PHP-DEV] (non)growing memory while creating anoymous functions via eval()

2013-02-04 Thread Hans-Jürgen Petrich
Am 04.02.2013, 19:11 Uhr, schrieb Terry Ellison : Hi Terry and all thank you very much for your response. The only thing that confused me about what you say that the second *doesn't* grow Yes, about that i was [and am still :-)] also confused... why the 2nd one won't grow *non-stop* so I ch

Re: [PHP-DEV] (non)growing memory while creating anoymous functions via eval()

2013-02-03 Thread Hans-Jürgen Petrich
Hi Terry and all thank you very much for your response. The only thing that confused me about what you say that the second *doesn't* grow Yes, about that i was [and am still :-)] also confused... why the 2nd one won't grow *non-stop* so I checked and it does -- just the same as the first.