Just out of curiousity..
is it possible to change the form of a multidimension array
Array
(
[0] => Array
(
[id_user] => 79
[nama] => Sasha
[id_app] => 908989898
)
[1] => Array
(
[id_user] => 91
[nama] => Edward
[id_app] => 23232323
)
[2] => Array
(
[id_user] => 50
[nama] => Jhon
[id_app] => 1212121212
)
)
into
Array
(
[id_user] => Array
(
[0] => 79
[1] => 91
[2] => 50
)
[nama] => Array
(
[0] => Sasha
[1] => Edward
[2] => Jhon
)
[id_app] => Array
(
[0] => 908989898
[1] => 23232323
[2] => 1212121212
)
)
using native function and not by looping it manually?
For now, I am using PHP and manually loop it, but if in any other language it is possible please inform me.