remove key from associative array with single key
I have the following array,
$myarray[0]['first_name']
$myarray[0]['last_name']
I want to turn it into:
$myarray开发者_StackOverflow社区['first_name']
$myarray['last_name']
with a simple oneliner?
this?
$myarray = $myarray[0];
Or this?
$myarray = current($myarray);
user187291's solution still looks clearer though.
精彩评论