PHP 多维数组的排序问题 根据二维数组中某个项排序_php技巧
PHP内置函数 array_multisort 要求每个数组大小一样
$areas是地区的二维数组,包含人数和次数,现在要按这2种数进行降序排序
foreach($areaArray as &$areas) {
$times = $numbers = array();
foreach($areas as $province => $v) {
$times[$province] = $v['times'];
$numbers[$province] = $v['numbers'];
}
array_multisort($times, SORT_DESC, $numbers, SORT_DESC, $areas);
}
比如有个多为数组:
$arr = array(
‘d' => array(‘id' => 5, ‘name' => 1, ‘age' => 7),
‘b' => array(‘id' => 2,'name' => 3,'age' => 4),
‘a' => array(‘id' => 8,'name' => 10,'age' => 5),
‘c' => array(‘id' => 1,'name' => 2,'age' => 2)
);
需要对二维数组中的 age 项排序。
需要用到PHP的内置函数 array_multisort(),可以看手册。
自定义函数:
function multi_array_sort($multi_array,$sort_key,$sort=SORT_ASC){
if(is_array($multi_array)){
foreach ($multi_array as $row_array){
if(is_array($row_array)){
$key_array[] = $row_array[$sort_key];
}else{
return false;
}
}
}else{
return false;
}
array_multisort($key_array,$sort,$multi_array);
return $multi_array;
}
//处理
echo “
print_r(multi_array_sort($arr,'age'));exit;
//输出
Array
(
[c] => Array
(
[id] => 1
[name] => 2
[age] => 2
)
[b] => Array
(
[id] => 2
[name] => 3
[age] => 4
)
[a] => Array
(
[id] => 8
[name] => 10
[age] => 5
)
[d] => Array
(
[id] => 5
[name] => 1
[age] => 7
)
)
written by 大宇
0

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

One-dimensional arrays are sorted using the sort() function, two-dimensional arrays are sorted by internal elements using the usort() function, and high-dimensional arrays are sorted by hierarchical elements using the multi-layer nested usort() function. Solving the decomposition problem layer by layer is the key.

A matrix is a set of numbers arranged in rows and columns. A matrix with m rows and n columns is called an mXn matrix, and m and n are called its dimensions. A matrix is a two-dimensional array created in Python using lists or NumPy arrays. In general, matrix multiplication can be done by multiplying the rows of the first matrix by the columns of the second matrix. Here, the number of columns of the first matrix should be equal to the number of rows of the second matrix. Input and output scenario Suppose we have two matrices A and B. The dimensions of these two matrices are 2X3 and 3X2 respectively. The resulting matrix after multiplication will have 2 rows and 1 column. [b1,b2][a1,a2,a3]*[b3,b4]=[a1*b1+a2*b2+a3*a3][a4,a5,a6][b5,b6][a4*b2+a

How to merge multiple arrays into a multi-dimensional array in PHP In PHP development, we often encounter the need to merge multiple arrays into a multi-dimensional array. This operation is very useful when operating large data collections and can help us better organize and process data. This article will introduce you to several common methods to achieve this operation, and attach code examples for reference. Method 1: Use the array_merge function. The array_merge function is a commonly used array merging function in PHP. It can merge multiple arrays.

Arrays are a very common data type in PHP. Sometimes, we will face situations involving multi-dimensional arrays. In this case, if we need to perform the same operation on all elements, we can use the array_walk_recursive() function. The array_walk_recursive() function is a very powerful recursive function in PHP that can help us perform recursive operations on multi-dimensional arrays. It can recursively traverse each element of a multi-dimensional array and perform corresponding operations on it.

Two effective ways to reverse multidimensional PHP arrays: Recursively using the array_reverse() function: Recursively reverse the elements of each nested array. PHP7's array_reverse() function: Use the new overload of the array_reverse() function to reverse multi-dimensional arrays.

How to sort multi-dimensional arrays in PHP In PHP, arrays are a very common and important data structure, and multi-dimensional arrays are used more frequently in some complex data processing. However, sorting multidimensional arrays can be tricky. This article will show you how to sort multidimensional arrays in PHP and provide specific code examples. Before we begin, let's first understand the structure of multidimensional arrays. Multidimensional array means that the elements in an array are also an array, forming a nested structure. For example: $st

In-depth discussion of PHP arrays: comprehensive analysis of multi-dimensional arrays, associative arrays, etc. Arrays in PHP are a very important data structure that can store multiple data items and access them through indexes. In PHP, arrays can be divided into different types such as indexed arrays, associative arrays, and multidimensional arrays. Each type has its own unique uses and characteristics. This article will delve into the various types of PHP arrays, including how to declare, access, traverse and operate arrays, and will provide specific code examples to help readers better understand. 1. Index array index number

How to loop through a multidimensional array in PHP In PHP, an array is a powerful data structure that can hold multiple values. Multidimensional arrays are a further extension of arrays and can accommodate multiple arrays. Loop traversal is a common operation method when dealing with multi-dimensional arrays. This article will introduce how to use different loop methods to traverse multi-dimensional arrays in PHP and provide corresponding code examples. Using for loop to traverse multi-dimensional arrays for loop is one of the most common and widely used loop methods. It can nest multiple for loops.
