Php obtains the original index value of the largest array item with the key value in the array.

Source: Internet
Author: User
This article describes how to obtain the index value of the largest array item in the array using php, and sort the Array Using asort, then, use the foreach loop to assign the array index value to a new array to obtain its corresponding

This article describes how to obtain the index value of the largest array item in the array using php, and sort the Array Using asort, then, use the foreach loop to assign the array index value to a new array to obtain its corresponding

This article describes how to obtain the index value of the largest array item in the array using php. Share it with you for your reference. The specific analysis is as follows:

I. Problems:

Obtains the key value of the array item with the maximum value from the given array. Purpose: Obtain the name of the student with the highest score in the class.

Ii. solution:

<? Php/** Created on 2015-3-17 * Created by */$ arr = array ('Tom '=> 9, 'jack' => 3, 'Kim' => 5, 'hack' => 4); asort ($ arr); // print_r ($ arr); // output: array ([jack] => 3 [hack] => 4 [kim] => 5 [tom] => 9) $ rel = array (); foreach ($ arr as $ k =>$ v) {$ rel [] = $ k;} // echo $ rel [0]; // output minimum value: jack echo end ($ rel); // maximum output value: tom?>

I hope this article will help you with php programming.

,

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.