PHP array, Are array indexes case sensitive?

Yes. They are case sensitive.

PHP array indexes act as hash tables in your example. A capital letter “A” and a lowercase letter “a” have different hash values, therefore they will be different indexes.

Leave a Comment