I have a array of strings:
0 - 5 50-100 10-50 150-250 100-150
Now I want to automatically sort these to:
0-5 10-50 50-100 100-150 150-250
How would I go about this?
|
feedback
|
|
You need to use the
| |||
|
feedback
|
|
http://www.php.net/manual/en/function.natsort.php Sort an array using a "natural order" algorithm
result:
NOTE: the keys will stay the same and are not renumbered. when this is not the desired result, you may want to renumber it yourself after the sort:
OR even better: (thx @liquorvicar)
| ||||
feedback
|