What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Coming with PHP 8.1.0, you can easily check if an array has its keys in a sequence using the new `ar

Chemaclass
Chemaclass Tech Lead Spryker Solution Partner Posts: 213 🧑🏻‍🚀 - Cadet

Coming with PHP 8.1.0, you can easily check if an array has its keys in a sequence using the new array_is_list() function.

Comments

  • In modern PHP coding I don't find this too useful, though.
    One usually knows if you use assoc arrays or not. And code accordingly IMO.
    A list can still have certain keys missing, and would still be iterable etc. So this method is probably of very little worth combined to other new ones.