Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple associative array.

$a = array("a"=>"b", "c"=>"d");

I want to check if the key "1" exists in the array, e.g.

isset($a["1"]);

This string is being treated as an integer, so that

echo $a["1"]; //prints "d"

How do I get it to treat it as a string?

I don't want to use array_key_exists or in_array because my benchmarking shows isset will be a lot faster.

share|improve this question
3  
.. the easy answer is, don't use string integers for your associate arrays. Add a prefix, or completely change your naming convention. Why create a work-around to accommodate this preventable design choice? – Fosco Jan 9 '11 at 4:31
I'm parsing words from a text and checking their index, some of those will be numbers, so I have to do it this way. – bcoughlan Jan 9 '11 at 4:34
1  
-1 bogus question, php doesn't behave this way. – chris Jan 9 '11 at 5:00

3 Answers

up vote 2 down vote accepted

It doesn't appear that you can do what you want to do. from http://us.php.net/manual/en/language.types.array.php:

A key may be either an integer or a string. If a key is the standard representation of an integer, it will be interpreted as such (i.e. "8" will be interpreted as 8, while "08" will be interpreted as "08").

You'll probably have to use Fosco's suggestion of prefixing all your keys with something. If you use the same prefix on every key, then it doesn't matter if you're parsing a text that might have words and numbers - put the same prefix on everything regardless.

share|improve this answer

isset($a["1"]) | isset($a[1]) ?

Or just isset($a[1])

Or even isset($a[intval(1)]) to be 1000% sure.

share|improve this answer
Other way around, looking for string, not integer – bcoughlan Jan 9 '11 at 4:38

if echo $a['1'] prints d, then your array has more elements than you realize.

see var_dump($a) and print_r($a) functions to help you debug your code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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