Implementation of PHP two-dimensional array sorting according to specified fields

不言
Release: 2023-04-02 15:08:01
Original
2302 people have browsed it

This article mainly introduces the implementation of sorting PHP two-dimensional arrays according to specified fields. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

Encountered problems : After merging two arrays using the array_merge() function that comes with PHP, I want to sort the new array according to the 'post_time' field shared by the two arrays

Solution: Learn from the official manual There is the array_multisort() function, can sort multiple arrays or multi-dimensional arrays and return the sorted array, in which the string key names will be retained, but the numeric key names will be re-indexed, starting from 0 and ending with 1 incrementally.

This function is encapsulated below for easy calling:

/**
 * 二维数组按照指定字段进行排序
 * @params array $array 需要排序的数组
 * @params string $field 排序的字段
 * @params string $sort 排序顺序标志 SORT_DESC 降序;SORT_ASC 升序
 */
function arraySequence($array, $field, $sort = 'SORT_DESC') {
    $arrSort = array();
    foreach ($array as $uniqid => $row) {
        foreach ($row as $key => $value) {
            $arrSort[$key][$uniqid] = $value;
        }
    }
    array_multisort($arrSort[$field], constant($sort), $array);
    return $array;
}
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's learning. More related Please pay attention to the PHP Chinese website for content!

Related recommendations:

php method of grabbing web content and images

PHP Utilization Implementation of sending emails via QQ mailbox

How to implement arithmetic verification code in php

The above is the detailed content of Implementation of PHP two-dimensional array sorting according to specified fields. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!