Support for keys in list(), or its new shorthand syntax [] in PHP
Now as of PHP 7.1, you can define the keys of your array that will be parsed when destructuring your arrays. Prior to PHP 7.1, you could only use arrays with numeric indexes. Now with this new addition, our lives just got easier. Let’s go over a few examples below on how we can use […]
Read More »