Reputation: 161
I have the following array,
$myarray[0]['first_name']
$myarray[0]['last_name']
I want to turn it into:
$myarray['first_name']
$myarray['last_name']
with a simple oneliner?
Upvotes: 0
Views: 468
Reputation: 690
Or this?
$myarray = current($myarray);
user187291's solution still looks clearer though.
Upvotes: 0