I have two arrays, both have the same keys (different values) however array #2 is in a different order. I want to be able to resort the second array so it is in the same order as the first array.
Is there a function that can quickly do this?
|
I can't think of any off the top of my head, but if the keys are the same across both arrays then why not just loop over the first one and use its key order to create a new array using the the values from the 2nd one?
|
||||
|
Try this
OUTPUT
Check the php manual for |
|||||||||
|
|
|||
|
I am not completely sure if this is what your after. anyways as long as the the array remains the same size, than this should work for you.
Output
|
||||
|