function sharing of two-dimensional PHP array ordering

Source: Internet
Author: User
Tags foreach arrays
Two-dimensional arrays are often encountered in PHP development, but his ranking is not as convenient as a one-dimensional array with built-in functions, the order of two-dimensional arrays needs our own Write function processing, here Uncletoo to share a PHP two-dimensional array sorting function: Code: The code is as follows:  Functionarray_sort ($arr, $keys, $type = ' asc ') {$keysvalue = $new _array= Array ();  foreach ($arras $k=> $v) {$keysvalue [$k] = $v [$keys];  } if ($type = = ' asc ') {asort ($keysvalue);  }else{Arsort ($keysvalue);  Reset ($keysvalue);  foreach ($keysvalueas $k=> $v) {$new _array[$k] = $arr [$k];  } Return$new_array;    The three parameter description of the function: $arr: Array $keys to sort: Specify which key value to sort $type: sort, ascending or descending, default to ascending this PHP function enables you to sort a two-dimensional array based on the specified key value and returns the sorted array. Call Example: The code is as follows: $newArray = Array_sort ($array, ' price ');

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.