Home > php教程 > php手册 > php-Arrays函数-array_multisort-对多个数组或多维数组进行排序

php-Arrays函数-array_multisort-对多个数组或多维数组进行排序

WBOY
Release: 2016-06-13 10:49:23
Original
1582 people have browsed it

array_multisort() 对多个数组或多维数组进行排序

【功能】
         该函数可以用来一次对多个数组进行排序,或者根据某一维或多维对多维数组进行排序
【使用范围】
         php4、php5.
【使用】
         bool array_multisort( array array1[,mixed array2[,mixed...[,array...]]]  )
         arrayn/必需/即将排序的数组
         剩下的参数是数组或标志
         SORT_ASC 按照升序排序
         SORT_DESC按照降序排序
         SORT_REGULAR为将项目按照通常方法比较
         SORT_NUMERIC为将项目按照数值比较
         SORT_STRING 为将项目按照字符串比较
         每个数组之后不能指定同类的排序标志
         每个数组背后指定的排序标志仅对该数组有效,在此之前默认值SORT_ASC和SORT_REGULAR
【示例】
[php]
$arr1 = array("10",100,100,"a"); 
$arr2 = array(1,3,"2",1); 
array_multisort($arr1,$arr2); 
var_dump($arr1); 
var_dump($arr2); 
/*
array(4) {
  [0]=>
  string(2) "10"
  [1]=>
  string(1) "a"
  [2]=>
  int(100)
  [3]=>
  int(100)
}
array(4) {
  [0]=>
  int(1)
  [1]=>
  int(1)
  [2]=>
  string(1) "2"
  [3]=>
  int(3)
}
*/ 

 


摘自 zuodefeng的笔记

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template