vote up 1 vote down star

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

Question:

"Are PHP array indexes case sensitive"?

Example:

$a=array("a"=>"Dog","b"=>"Cat","c"=>"Horse","A"=>"Dog","B"=>"Cat","C"=>"Horse");
print_r($a);

Results:

Array ( [a] => Dog [b] => Cat [c] => Horse [A] => Dog [B] => Cat [C] => Horse )

I've run a couple of examples and this seems to hold true, just wanted to make sure that I'm seeing this correctly.

flag

6 Answers

vote up 5 vote down check

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.

link|flag
Thanks for the clarification – Phill Pafford Oct 2 at 20:29
vote up 1 vote down

Yes, just like variable names (but not function names), hash keys are case-sensitive.

link|flag
vote up 0 vote down

Answer:

Yes, they are.

link|flag
vote up 0 vote down

Although it's not true of the system with which most people are familiar (Windows), it's a reasonable assumption to make when approaching any new language or environment that it will be case sensitive. PHP is along with virtually every other language and environment in common use. The most notable exceptions that spring to mind (apart from the aforementioned Windows) are SQL and Delphi (Pascal).

link|flag
vote up -1 vote down

I've run a couple of examples and this seems to hold true, just wanted to make sure that I'm seeing this correctly.

Well, if you ran the examples and it's true, there isn't much to do :P

link|flag
Until, of course, there's that thing you don't know about because you're new to programming. – Alan Storm Oct 2 at 20:04
True! Sorry for not considering that. – Daniel S Oct 2 at 20:36
vote up -1 vote down

That's easy enough to check on your own.

$dogs = array('Dog' => 'Wuff', 'dog' => 'wuff', 'DOG' => 'WUFF');
var_dump($dogs);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.