PHP – 8.0 Match Expression
In PHP 8.0 there is a new feature or I should say a new language construct (keyword) going to be introduced, which has been implemented depending on the following RFC. This RFC proposes adding a new match expression that is similar to switch but with safer semantics and the ability to return values. Let’s see an example using switch : The same […]