Logo

Programming-Idioms

History of Idiom 100 > diff from v34 to v35

Edit summary for version 35 by programming-idioms.org:
Admin deletes impl 1144

Version 34

2016-12-18, 02:14:45

Version 35

2016-12-18, 02:50:32

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
$list = [7,4,3,1,2];
$c = function($a, $b){return $a-$b;}
usort($list, $c);

var_dump($list);