如何在 PHP 中找到关联数组中第一个元素的值?
我有一个像这样的数组:
$array = array(
'fruit1' => 'apple',
'fruit2' => 'orange',
'fruit3' => 'grape',
);
是否有一个函数可以从该数组中获取 'apple'
(第一个键)?还是我别无选择,只能这样做?
function firstkey($array)
{
for($array as $first)
{
return $first;
}
}
I have an array like this:
$array = array(
'fruit1' => 'apple',
'fruit2' => 'orange',
'fruit3' => 'grape',
);
Is there a function that'll grab 'apple'
(the first key) from that array? Or do I have no choice but to do this?
function firstkey($array)
{
for($array as $first)
{
return $first;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$firstValue = reset($array);
http:// /www.php.net/manual/en/function.reset.php
$firstValue = reset($array);
http://www.php.net/manual/en/function.reset.php