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 know using an array as a key in a hash (associative array) in php will cause problems.

Something like this:

        $array[$nominee]=$nominations;

where $nominee is an array itself.

Its on a wordpress site, meaning i'm reluctant to leave it up live while I know/suspect theres an error. a very quick peek created an error with the word 'offset' in it.

From memory, using => is needed, but can anyone give me the exact syntax??

share|improve this question
What's the question here? What you're doing seems to be right. – Nadav S. Jul 16 '12 at 10:03
Why do you need the key to be an array, i don't even think it is possible. – ftom2 Jul 16 '12 at 10:04
1  
you cannot use an array as the key of an array. From the Manual: 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"). Floats in key are truncated to integer. The indexed and associative array types are the same type in PHP, which can both contain integer and string indices. – Gordon Jul 16 '12 at 10:04
@Gordon: You should put that as an answer. – Thrustmaster Jul 16 '12 at 10:07
You cant do this like that. The Array key can either be an integer or a string. Please specify your need. – merahulpk Jul 16 '12 at 10:07
show 3 more comments

closed as not a real question by Gordon, Thrustmaster, fvu, j0k, bažmegakapa Jul 17 '12 at 8:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can't use an array as a array-key. You can only use scalar values (except null) as an key. Sometimes, it is useful to use the content of an array as a key. In this case, you could generate a hash from it:

$key = serialize($key);

or

$key = sha1(serialize($key));
share|improve this answer

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