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?
feedback
|
|
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. | |||
|
feedback
|
|
the simplest option: wherever you use | |||
|
feedback
|
|
You can create a wrapper function:
So you just create a 2-dimensional array. You can retrieve the "linked list" (another array) by normal array access Whether this approach is convenient is up to you. | |||
|
feedback
|