I've been trying to do it for a few hours now but i don't have any specific idea. I would like to achieve such a result as shown below. The array is derived from a json file.
I have:
[0] => Array(
[Id] => scr_1
[Size] => 1920, 1080
)
[1] => Array(
[Id] => scr_2
[Size] => 1280, 1024
)
My goal is:
[0] => Array(
[Id] => scr_1
[Size] => Array(
[Width] => 1920
[Height] => 1080
)
)
[1] => Array(
[Id] => scr_
[Size] => Array(
[Width] => 1280
[Height] => 1024
)
)
How can I do that ? Thank you in advance!