Logo

Programming-Idioms

History of Idiom 100 > diff from v43 to v44

Edit summary for version 44 by ricardo_sdl:
New PHP implementation by user [ricardo_sdl]

Version 43

2018-05-01, 19:53:36

Version 44

2018-08-29, 13:55:29

Idiom #100 Sort by a comparator

Sort elements of array-like collection items, using a comparator c.

Idiom #100 Sort by a comparator

Sort elements of array-like collection items, using a comparator c.

Extra Keywords
list
Extra Keywords
list
Code
$a=[3,7,2,9,2,3,8];
uasort($a, function($a, $b) {
    return $a <=> $b;
});
print_r($a);
Doc URL
https://secure.php.net/manual/en/function.uasort.php
Demo URL
https://3v4l.org/SSY5s