I have an array with the following 6 strings.
user1 A
user2 B
user4 C
user2 D
user1 E
I need to create a Dictionary like:
arr['user1'] => ['A', 'E']
arr['user2'] => ['B', 'D']
arr['user4'] => ['C']
How to do this in PHP?
|
|
This seems to work...
|
|||
|
|
|
Try this, assuming $string is the string of values you have:
Assuming $mainArr is the array of values, and you already have the array:
You'll want to look at multidimensional arrays in PHP: http://php.net/manual/en/language.types.array.php |
|||||
|
|
This is what you can do:
|
|||
|