I want to add a key and value in the array as first element without impacting other elements
Array
(
[8] => ab
[10] => cd
[11] => ef
[9] => gh
[7] => ik
)
Resultant array should be
Array
(
[0] => All
[8] => ab
[10] => cd
[11] => ef
[9] => gh
[7] => ik
)