[PHP-DEV] Get registered on wiki

2020-07-27 Thread [ ]
Hello! I'd like to create an account on wiki to write RFC about a new (two-steps) way of constructing objects. My username: rela589n

Re: [PHP-DEV] Registration on wiki

2020-07-27 Thread [ ]
Thank you, I will do that. On Tue, Jul 28, 2020 at 8:46 AM Kalle Sommer Nielsen wrote: > > > tir. 28. jul. 2020 kl. 08.39 skrev [ ] : > >> When I try to register on https://wiki.php.net/?do=register , >> >> Such error is generated: "That wasn't the answer we w

Re: [PHP-DEV] Registration on wiki

2020-07-27 Thread Kalle Sommer Nielsen
tir. 28. jul. 2020 kl. 08.39 skrev [ ] : > When I try to register on https://wiki.php.net/?do=register , > > Such error is generated: "That wasn't the answer we were expecting". This means you failed the captcha on the registration form, please read the page

[PHP-DEV] Registration on wiki

2020-07-27 Thread [ ]
When I try to register on https://wiki.php.net/?do=register , Such error is generated: "That wasn't the answer we were expecting". ## Credentials: Username: rela589n Real name: Eugene Sidelnyk E-Mail: zsidel...@gmail.com

Re: [PHP-DEV] Proposal: php.ini environment variable fallback value

2020-07-27 Thread Derek Bonner
On July 27, 2020 at 8:27:07 PM, Michael Morris (tendo...@gmail.com) wrote: You mention Docker - usually I've seen it used alongside Ansible, Chef or Puppet. Each of these provisioning programs can modify the php.ini file used on the container at deploy time without necessitating a change to PHP it

Re: [PHP-DEV] Re: [RFC][Proposal] Renamed parameters

2020-07-27 Thread tyson andre
Hi internals, Continuing on my response in https://externals.io/message/61#92 , and considering ways to enhance named arguments without a BC break (while minimizing the impact on application/library authors that wish for their libraries not to be used with named parameters) I was consid

Re: [PHP-DEV] Proposal: php.ini environment variable fallback value

2020-07-27 Thread Michael Morris
On Mon, Jul 27, 2020 at 12:18 AM Michał Marcin Brzuchalski < michal.brzuchal...@gmail.com> wrote: > Hi Michael, > > niedz., 26 lip 2020, 06:22 użytkownik Michael Morris > napisał: > >> PHP's ini values are already a bit of a mess. You have a global php.ini >> file, and then most PHP ini directiv

Re: [PHP-DEV] Re: HTTP/1.1 by default in PHP 8.0

2020-07-27 Thread Sara Golemon
On Mon, Jul 27, 2020 at 5:25 PM Rowan Tommins wrote: > A couple of months ago I revived my suggestion to make stream wrappers > advertise HTTP/1.1 by default (full message below), and then Real Life > intervened and I didn't raise the PR. > > The implementation (which is a one-character change) i

Re: [PHP-DEV] [RFC][Proposal] Renamed parameters

2020-07-27 Thread Andreas Hennings
Good point about the static typing! On Mon, 27 Jul 2020 at 20:40, Rowan Tommins wrote: > Hi Andreas, > > > On 27/07/2020 00:41, Andreas Hennings wrote: > > 1. Calls with named arguments can only happen on: > >- explicitly named functions (e.g. no call_user_func()). > >- constructor calls

[PHP-DEV] Re: [PHP-CVS] com php-src: Consolidate Parameter Names For ext/simplexml: ext/simplexml/simplexml.stub.php ext/simplexml/simplexml_arginfo.h

2020-07-27 Thread Derick Rethans
On 27 July 2020 20:42:33 BST, Benjamin Eberlei wrote: >Commit:eaeceb32932026c08a9d9e5be56da8e8111c5caa >Author:Benjamin Eberlei Mon, 27 Jul >2020 19:32:00 +0200 >Parents: 8a6bc6767dbda4861b83fb9dcbba4453e541bbb9 >Branches: master > >Link: >http://git.php.net/?p=php-src.gi

[PHP-DEV] Re: HTTP/1.1 by default in PHP 8.0

2020-07-27 Thread Rowan Tommins
Hi all, A couple of months ago I revived my suggestion to make stream wrappers advertise HTTP/1.1 by default (full message below), and then Real Life intervened and I didn't raise the PR. The implementation (which is a one-character change) is now here: https://github.com/php/php-src/pull/58

Re: [PHP-DEV] [RFC][Proposal] Renamed parameters

2020-07-27 Thread Rowan Tommins
Hi Andreas, On 27/07/2020 00:41, Andreas Hennings wrote: 1. Calls with named arguments can only happen on: - explicitly named functions (e.g. no call_user_func()). - constructor calls with an explicitly named class. - object methods, if the object variable is type-hinted or a type is k

Re: [PHP-DEV] [RFC][Proposal] Renamed parameters

2020-07-27 Thread Andreas Hennings
On Mon, 27 Jul 2020 at 03:18, tyson andre wrote: > Hi Andreas Hennings, > > > 1. Calls with named arguments can only happen on: > > - explicitly named functions (e.g. no call_user_func()). > > - constructor calls with an explicitly named class. > > - object methods, if the object variable i

Re: [PHP-DEV] Proposal: php.ini environment variable fallback value

2020-07-27 Thread Michał Marcin Brzuchalski
Hi Derek, pt., 24 lip 2020 o 22:54 Derek Bonner napisał(a): > Currently an environment variable can be specified in the php.ini file. > This is useful if you want tune one or two settings in your runtime > environment. Where this runs into issues is if you want to do something > similar to Juan