I once trying adding two values with the same key, but it didn't work. It overrode the old value. Isn't it possible to add more than one value with the same key, and when retrieving by key, I get a linked list which I can iterate to get all the different values?

link|improve this question

So it DID work, because that's how it's supposed to be ;) Just like cdhowie below says, you can create (or possilbly find) a class that would have the functionality as you describe. – Mchl Dec 20 '10 at 10:23
Your question title and question content are very different... – BoltClock Dec 20 '10 at 11:02
feedback

3 Answers

up vote 0 down vote accepted

Not unless you actually store an array as the value. Hashtables in PHP map a key to one value. That value could be an array, but you have to build the array yourself. You might consider creating a class to do this for you.

link|improve this answer
feedback

the simplest option: wherever you use $array[$key]=... replace it with $array[$key][]=...

link|improve this answer
feedback

You can create a wrapper function:

function add_to_array($array, $key, $value) {
    if(array_key_exists($key, $array)) {
        if(is_array($array[$key])) {
            $array[$key][] = $value;
        }
        else {
            $array[$key] = array($array[$key], $value);           
        }
    }
    else {
        $array[$key] = array($value);
    }
}

So you just create a 2-dimensional array. You can retrieve the "linked list" (another array) by normal array access $array[$key].

Whether this approach is convenient is up to you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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