Home >php教程 >php手册 >php获取数组中键值最大数组项的索引值 原创

php获取数组中键值最大数组项的索引值 原创

WBOY
WBOYOriginal
2016-06-06 20:06:26942browse

这篇文章主要介绍了php获取数组中键值最大数组项的索引值的方法,主要通过asort对数组进行排序,再使用foreach循环将数组索引值赋给一个新的数组,从而获取其对应索

本文实例讲述了php获取数组中键值最大数组项的索引值的方法。分享给大家供大家参考。具体分析如下:

一、问题:

从给定数组中获取值最大的数组项的键值。用途如:获取班级得分最高的学生的姓名。

二、解决方法:

9,'jack'=>3,'kim'=>5,'hack'=>4); asort($arr); //print_r($arr); //输出:Array ( [jack] => 3 [hack] => 4 [kim] => 5 [tom] => 9 ) $rel=array(); foreach($arr as $k=>$v){ $rel[]=$k; } //echo $rel[0];//输出最小值:jack echo end($rel);//输出最大值:tom ?>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn