[PHP-DEV] Re: Character range syntax ".." for character masks

2022-07-08 Thread mickmackusa
On Saturday, July 9, 2022, Kirill Nesmeyanov wrote: > > Note that the "..." operator is unary, so there is no syntax conflict when > using two floats: > ``` > echo 0...1; // 00.1 > ``` > > However, in the case of the ".." operator, it is assumed to be a binary > operator, so problems with

Re: [PHP-DEV] Character range syntax ".." for character masks

2022-07-08 Thread Kirill Nesmeyanov
Note that the "..." operator is unary, so there is no syntax conflict when using two floats: ``` echo 0...1; // 00.1 ```   However, in the case of the ".." operator, it is assumed to be a binary operator, so problems with grammar ambiguity may arise: ``` echo 0 ..1; // 00.1 echo 0.. 1; // 01

[PHP-DEV] Character range syntax ".." for character masks

2022-07-08 Thread mickmackusa
I've discovered that several native string functions offer a character mask as a parameter. I've laid out my observations at https://stackoverflow.com/q/72865138/2943403 In a nutshell, not all character masks offer ranges via "double dot" syntax. Or should I refer to ".." as the "string spread

Re: [PHP-DEV] What to do with qa.php.net?

2022-07-08 Thread Sara Golemon
On Fri, Jul 8, 2022 at 9:48 AM Derick Rethans wrote: > I don't however think we should stick these QA builds in the web-downloads Git Repository though. It is growing big enough already and there was some earlier talk about moving them to Git LFS instead. I don't know how feasible or proprietary

Re: [PHP-DEV] [RFC] [VOTE] Constants in traits

2022-07-08 Thread MKS Archive
> On Jul 8, 2022, at 12:29 PM, Jordan LeDoux wrote: > > On Tue, Jul 5, 2022 at 2:39 PM shinji igarashi > wrote: > >> Hello internals, >> >> I've started the vote for the Constants in Traits RFC: >> https://wiki.php.net/rfc/constants_in_traits >> >> The vote will end on

Re: [PHP-DEV] [RFC] [VOTE] Constants in traits

2022-07-08 Thread Jordan LeDoux
On Tue, Jul 5, 2022 at 2:39 PM shinji igarashi wrote: > Hello internals, > > I've started the vote for the Constants in Traits RFC: > https://wiki.php.net/rfc/constants_in_traits > > The vote will end on 19. July 2022. > > Thanks! > > -- > Shinji Igarashi > > I don't have a vote, but I wanted to

Re: [PHP-DEV] What to do with qa.php.net?

2022-07-08 Thread Derick Rethans
On 8 July 2022 16:24:13 CEST, Sara Golemon wrote: >On Thu, Jul 7, 2022 at 11:54 AM Christoph M. Becker >wrote: >> I wonder what we should do with qa.php.net. >> > >I too have wondered this many a time. > >> The only really relevant stuff on the Website is the listing of >> available QA releases,

Re: [PHP-DEV] What to do with qa.php.net?

2022-07-08 Thread Sara Golemon
On Thu, Jul 7, 2022 at 11:54 AM Christoph M. Becker wrote: > I wonder what we should do with qa.php.net. > I too have wondered this many a time. > The only really relevant stuff on the Website is the listing of > available QA releases, and the information on how to write PHPT test > cases. In