在处理二维数组或多维数组排序上分别使用array_multisort和usort这两个函数之间有性能上的差异吗?
回复内容:
在处理二维数组或多维数组排序上分别使用array_multisort和usort这两个函数之间有性能上的差异吗?
在stackoverflow上看到的.另外 usort在比较同值排序的时候会出现排序随机状态,做榜单类数据不合理。
usort() is more concise and doesn't require extracting a column array to feed to array_multisort(). (It also does less than array_multisort.)
However, when I repeatedly tested it today on arrays of 20,000 and 10,000 representative data rows, usort() was 7-15x slower than array_multisort() when the column was random values of type int and the column was pre-extracted. That is as one might expect, since for every comparison you're comparing an entire php function call to optimized intrinsic code.
Using an anonymous function as in the previous reply gave a 30-35% improvement over passing usort() the name of a defined function. It was never better than 8x slower and usually worse than 10x slower. Often this won't matter, but when you start getting up into tenths of a second of CPU time just for sorting one array, it might. Extracting the column without array_column() on a pre-5.5 server never quite halved the differential at best.
http://stackoverflow.com/questions/3013974/php-usort-or-array-multisor...
经过测试:
arraycount=1000
usort排序执行时间为:0.034267902374268 s
array_multisort排序执行时间为:0.0045900344848633 s
arraycount=10000
usort排序执行时间为:0.29996109008789 s
array_multisort排序执行时间为:0.03429102897644 s
arratcount=100000
usort排序执行时间为:3.8284521102905 s
array_multisort排序执行时间为:0.85004997253418 s
可以看出array_multisort的确要快很多,但对于数据量很小的排序usort可以做到更为灵活的业务处理。
array_multisort常用的应用场景是对二维数组按列排序, 可以在二维数组中实现类似Mysql中 ORDER BY COLUMN的操作。
比如说:$knowledgeArr是一个二维数组,数组中的每个单元类似于数据库的一条记录,我们想把下面三个单元按照
每个单元里的level值来倒序排列。 这非常像数据库的ORDER BY ,但是怎么对二维数组进行ORDER BY level DESC的操作呢, 这就用到了PHP中array_multisort() 这个函数
<code>$knowledgeArr = array( [0] => array( [name] => 字音 [knowledge_id] => 2 [level] => 2 [grade] => 2 [max_level] => 4 ), [1] => array( [name] => 字形 [knowledge_id] => 3 [level] => 1 [grade] => 2 [max_level] => 4 ), [2] => array( [name] => 语言文字运用 [knowledge_id] => 1 [level] => 1 [grade] => 1 [max_level] => 6 ) ); </code>
现在有了包含行的数组$knowledgeArr,但是 array_multisort() 还需要一个包含单列level的数组,因此用以下代码来取得列,然后排序。
<code> $sortCol = array(); foreach($knowledgeArr as $val) { $sortCol[] = $val['level']; } array_multisort($sortCol, SORT_DESC, $knowledgeArr);//以知识点的level倒序排列 </code>
关于array_multisort()更详细的说明参考官方手册 http://cn2.php.net/array_multisort
至于性能, 因为usort使用的是你自己定义的PHP函数, 而array_multisort的排序是在PHP源码层实现的,所以在排序速度上应该是array_multisort来得更快一些。
亲测过,array_mutlisort更快!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


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

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Atom editor mac version download
The most popular open source editor

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