Wednesday, 8 August 2018

PHP: Get The First Element Of An Associative Array.

This is a small tutorial on how to get the first element of an associative array in PHP. As you probably already know, associative arrays are extremely popular in PHP, simply because they allow you to set keys / indexes that are human-friendly! Unfortunately, one of the drawbacks to using an associative array is that it can be difficult to retrieve elements based on their position!
Getting the first element is pretty easy if you understand the reset function. This function allows you to “reset” the internal pointer of an array back to its first element:
If you run the code snippet above, you’ll see that the reset function returns the first element of an array, regardless of whether it is an associative array or not.

Getting the first key of an associative array.

This is another common problem that developers face when working with associative arrays. When working with numbered indexes, it is pretty safe to assume that the first key will be “0”. However, with an associative array, it isn’t that easy.
In the example above, we combined the reset function and the key function in order to get the first key of our array.

0 comments:

Post a Comment