Re: [PHP-DEV][RFC] Normalize array's "auto-increment" value on copy on write

2019-06-30 Thread Niklas Keller
> Maybe it would be good to add a secondary vote to decide if this should be > implemented in PHP 7.4 or PHP 8. Missed that, it should definitely target PHP 8, not 7.4. Regards, Niklas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] Memory leak in eval()'d code

2019-06-30 Thread CHU Zhaowei
Eval is not the only case that will cause memory usage growing actually. https://3v4l.org/fPhlU is an example using include inside a loop, which is used to simulate including same file several times. I agree it might be trivial to improve for eval since it's not recommended to use due to securit