Skip to content
Advertisement

How to sort an array B (multidimensional) in php by the order of values in an array A (1 dimension)?

The alphabet is a substitute for the same specific character so that it is easy to see.

order case-1

JavaScript

order case-2

JavaScript

Array to be changed

JavaScript

result by case-1

JavaScript

or (Anything will be fine.)

JavaScript

result by case-2

JavaScript

or (Anything will be fine.)

JavaScript

tried code is like this.

JavaScript

Advertisement

Answer

I would say that a usort would be your best option here, although if it’s not in the context of a custom class, then you’ll have to use global to bring $arr_a into the sorting function.

A note – sorting functions do not REMOVE entries that don’t exist (or at least they shouldn’t ever do that), so I separated it into two steps. The first step is an initial sorting step which sorts/pushes any non-matched entries to the end of the sorted array.

The second step then loops backwards from the end of the sorted $arr_b and removes any entries that weren’t found in the $arr_a array.

JavaScript

The performance is probably okay if you’re not intending to do this a LOT (e.g. 100,000 times) or if the array is going to always be very small.

If $arr_a is going to have a lot of values, it may be worth doing a few performance optimizations, but what those are depends on what the true values of $arr_a are. If they are truly letters or single characters, you could use join them into a string like $a = “BACD” and use strpos().

Alternatively, do an array_flip() on $arr_a BEFORE the sorting begins and then use array_key_exists() to validate whether the keys exist or not, and then just a regular array access to get the position.

Again, if the arrays are going to be small and/or you’re only doing this a small number of times, then the optimization steps may take up more CPU cycles than whatever savings you’d get from it.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement