PHP 8.4
Here are all the posts tagged PHP 8.4.
November 20, 2024 • 5 min read
Discover the main new features in PHP 8.4
As has been tradition over the last decade, PHP ships a new version of the language every year, and now it's PHP 8.4's turn. If you follow this blog or my LinkedIn, you've probably already seen some...
September 16, 2024 • 2 min read
New array functions in PHP 8.4 -> array_find, array_find_key, array_any and array_all
The new PHP version, 8.4, will bring a new set of functions for working with arrays: array_find, array_find_key, array_any, and...
May 15, 2024 • 2 min read
Calling class methods without parentheses in PHP 8.4
With PHP 8.4, you'll be able to call class methods without using parentheses when creating the instance. 🐘
That's what the RFC proposes: new MyClass()->method() without...
April 15, 2024 • 3 min read
Property Hooks in PHP 8.4
For a while now, the community has been discussing the implementation of Property Hooks.
A consensus has now been reached, and the feature will be available in PHP 8.4.
This feature...
February 24, 2024 • 1 min read
OOP Curl API in PHP 8.4
PHP will get an OOP API for the cURL extension in version 8.4.0.
That's what the RFC proposes: Add OOP methods to Curl objects.
The proposal is part of the ongoing package...