[PHP-DEV] Re: [VOTE] Deprecate and Remove image2wbmp()

2018-06-09 Thread Christoph M. Becker
On 26.05.2018 at 16:04, Christoph M. Becker wrote: > As sequel to the RFC dicussion[1], I have started the vote on the > “Deprecate and Remove image2wbmp()” RFC: > > > > Voting will end on 2018-06-09 21:00 UTC (i.e. in two weeks). Thanks in > advance for yo

Re: [PHP-DEV] [VOTE] Make compact function reports undefined passed variables

2018-06-09 Thread Gabriel Caruso
> > Hi Gabriel, > >> compact(), extract(), parse_str() (with 1 argument) and >> get_defined_vars() are bad functions, because they access local variables >> indirectly. >> >> They might be considered to be removed in the next major PHP version, >> despite of this fix. >> >> >> Thanks. Dmitry. >> >>

Re: [PHP-DEV] Re: desiring a PHP.net wiki account

2018-06-09 Thread Niklas Keller
This issue has been resolved, thanks for your patience. :-) Regards, Niklas Am Do., 7. Juni 2018 um 15:23 Uhr schrieb Christoph M. Becker < cmbecke...@gmx.de>: > On 07.06.2018 at 14:28, Simon Hamp wrote: > > > My name is Simon Hamp (wiki username: simonhamp). I'd like to join the > RFC wiki to s

Re: [PHP-DEV] [VOTE] Make compact function reports undefined passedvariables

2018-06-09 Thread David Rodrigues
Em sáb, 9 de jun de 2018 às 11:27, Christoph M. Becker escreveu: > On 09.06.2018 at 12:03, Dmitry Stogov wrote: > > > compact(), extract(), parse_str() (with 1 argument) and > get_defined_vars() are bad functions, because they access local variables > indirectly. > > While I agree that extract()

Re: [PHP-DEV] [VOTE] Make compact function reports undefined passedvariables

2018-06-09 Thread Christoph M. Becker
On 09.06.2018 at 12:03, Dmitry Stogov wrote: > compact(), extract(), parse_str() (with 1 argument) and get_defined_vars() > are bad functions, because they access local variables indirectly. While I agree that extract() and parse_str() can be dangerous, I don't understand why compact() and get_d

Re: [PHP-DEV] [VOTE] Make compact function reports undefined passed variables

2018-06-09 Thread Sebastian Bergmann
Am 09.06.2018 um 12:03 schrieb Dmitry Stogov: > They might be considered to be removed in the next major PHP version, despite > of this fix. +1 -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [VOTE] Make compact function reports undefined passed variables

2018-06-09 Thread Dmitry Stogov
Hi Gabriel, compact(), extract(), parse_str() (with 1 argument) and get_defined_vars() are bad functions, because they access local variables indirectly. They might be considered to be removed in the next major PHP version, despite of this fix. Thanks. Dmitry. __