标签: php arrays associative-array
我有一个这样的数组:
$array = array( 'fruit1' => 'apple', 'fruit2' => 'orange', 'fruit3' => 'grape', );
是否有一个函数从该数组中获取'apple'(第一个键)?或者我别无选择,只能这样做?
'apple'
function firstkey($array) { for($array as $first) { return $first; } }
答案 0 :(得分:7)
$firstValue = reset($array);
http://www.php.net/manual/en/function.reset.php