search
Homephp教程PHP源码二维数组的‘分组’排序


$val){
				  asort($new[$key]);//分别对每一组的数据进行排序;
				  $tmp=$new[$key];//将排序后的数据赋值给一个临时数组;
				  $tmp[]=$key;//将原来数组的键值加入到临时数组的末尾,为后期的修改键值的步骤做准备;
				  $tmp2=$new[$key];
				  $a=array_shift($tmp2)*100;//将每一组的第一项(最小项)数据取出来,以aa组为例子,$a此时的值就为33;
                                  if(array_key_exists($a,$aa)){++$q_count;$a=$a+$q_count;}
				  $aa[$a]=$tmp;//新建一个数组,以$aa(比如33)为键值;
				  ksort($aa);//按照键值排序
		  }
		  foreach($aa as $key=>$val){//按照键值排序的数组,已经失去了原来的键值,比如aa/bb/cc/dd之类的,好在我们之前已经将键值存入了临时数组的末尾;
			  $b=array_pop($aa[$key]);//将键值取出来;
			  $bb[$b]=$aa[$key];//从新建立一个数组,使用之前的键值(aa/bb/cc)
		  }
		  return $bb;//返回
}
			
$c=arr_group_sort($new);    
print_r($new);//原数组;
print_r($c);//分组排序后的数组;
            ?>


Statement
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),