PHP array, Are array indexes case sensitive?

后端 未结 6 683
抹茶落季
抹茶落季 2020-12-03 09:44

I don\'t know if this is a problem yet but wanted to start thinking about it.

Question:

\"Are PHP array indexes case sensitive\"?

Ex

6条回答
  •  既然无缘
    2020-12-03 10:07

    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.

提交回复
热议问题