I have this form of array
Array
(
[0] => 8
[1] => 2
[2] => 10
[3] => 11
[4] => 19
[5] => 13
[6] => 10
)
I want to implode the value to this form [0,8],[1,2],[2,3],[3,11],[4,19],[5,13],[6,10]. Is there any builtin php function to do this?