Skip to content
Advertisement

How do I move an array element with a known key weight of an array in PHP?

Having a brain freeze over a fairly trivial problem. If I start with an array like this:

JavaScript

and i will do a function that move the keys of the array to key + ‘weight’. So the result gona be like this:

JavaScript

What is the most efficient way to do this?

Advertisement

Answer

Here is the function if it can help some people

JavaScript

Source of my solution

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