Graphite icon indicating copy to clipboard operation
Graphite copied to clipboard

Natural Sort

Open cgutteridge opened this issue 12 years ago • 1 comments

There may be a need to use a 'natural' sort which sorts numbers numerically so

http://id.example.org/1/foo http://id.example.org/5/foo http://id.example.org/11/foo

sort in that order. Alphabetic would give:

http://id.example.org/1/foo http://id.example.org/11/foo http://id.example.org/5/foo

cgutteridge avatar Mar 27 '12 10:03 cgutteridge

http://php.net/manual/en/function.natsort.php

$values = array_map(array('Foo', 'forceString'), $list); natsort($values);

CloCkWeRX avatar Mar 27 '12 22:03 CloCkWeRX