#news
Read more stories on Hashnode
Articles with this tag
Match Expression In PHP 8, Match Expression is introduced as a new control structure that provides a more concise and readable alternative to the...
In PHP 8, attributes (also known as annotations or metadata) were introduced as a new feature. Attributes provide a way to add metadata to classes,...
Named arguments in PHP 8 allow you to pass arguments to a function by specifying the parameter name along with the value, rather than relying on the...
The Nullsafe Operator, introduced in PHP 8.0, is a feature that simplifies the handling of null values in chains of method or property calls. Nullsafe...
Union Types PHP 8 introduced Union Types as a significant improvement in how we can declare data types in PHP. Prior to PHP 8, type declaration was...