[PHP-DEV] [VOTE] Use exceptions by default in SQLite3 extension

2023-05-08 Thread BohwaZ
Voting has now started for the RFC "Use exceptions by default in SQLite3 extension": https://wiki.php.net/rfc/sqlite3_exceptions The vote is open for 2 weeks. Thanks to the people who wrote the RFC howto page :) BohwaZ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, vi

[PHP-DEV] [RFC] Property hooks, nee accessors

2023-05-08 Thread Larry Garfield
Ilija Tovilo and I would like to offer another RFC for your consideration. It's been a while in coming, and we've evolved the design quite a bit just in the last week so if you saw an earlier draft of it in the past few months, I would encourage you to read it over again to make sure we're all

[PHP-DEV] Re: PHP 8.1 and OpenSSL

2023-05-08 Thread Jan Ehrhardt
"Christoph M. Becker" in php.internals (Wed, 18 Jan 2023 13:20:41 +0100): >Hi all! > >While the official builds for PHP 8.2 already use OpenSSL 3.0, the PHP >8.1 builds are still using OpenSSL 1.1.1. However, OpenSSL 1.1.1 is >only supported till 2023-09-11[1], while PHP 8.1 is supported till >202

Re: [PHP-DEV] [RFC] Define proper semantics for range() function

2023-05-08 Thread G. P. B.
On Fri, 5 May 2023 at 15:49, Derick Rethans wrote: > On Mon, 27 Mar 2023, G. P. B. wrote: > > > While working on analysing the impact of the changes proposed by > > amending the behaviour of the increment and decrement operators ( > > https://wiki.php.net/rfc/saner-inc-dec-operators) I discovered

[PHP-DEV] Re: Limit write access to object function parameters

2023-05-08 Thread Olle Härstedt
2023-05-06 12:55 GMT+02:00, Olle Härstedt : > Heyo internalitos, > > I was thinking of having the possibility to use `readonly` (or any > other keyword) to make a function argument behave as if it was a > readonly object. > > class Point > { > public int $x; > public int $y; >