Get First element in array as array with corresponding key
For example,
An
Array
(
[Actor] => 1
[Producer] => 1
[Director] => 2
)
I want to get first element with its corresponding key
Array
(
[Actor] => 1
)
How can it be done without looping using some array functions ?
array_slice($arr,0,1),array_splice($arr,0,1);, orlist($key,$value)=each($arr)may interest you to solve this problem.