What are the keys & values in an indexed array?

Technology CommunityCategory: PHPWhat are the keys & values in an indexed array?
VietMX Staff asked 4 years ago

Consider:

Array ( [0] => Hello [1] => world [2] => It's [3] => a [4] => beautiful [5] => day)

The keys of an indexed array are 0, 1, 2 etc. (the index values) and values are “Hello”, “world”, “It’s”, “beautiful”, “day”.