Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to sort the arrays numerically, i.e. 188, 188-1, 188-2, 222, 222-1, 222,-2 etc. This is how the array currently looks:

[188-1] => Array
    (
        [time] => 1
    )

[188-2] => Array
    (
        [time] => 2
    )

[188-3] => Array
    (
        [time] => 3
    )

[188] => Array
    (
        [notes] => frog stand notes
    )

[489] => Array
    (
        [notes] => notes
    )

[489-1] => Array
    (
        [weight] => 10
        [reps] => 30
    )

[489-2] => Array
    (
        [weight] => 20
        [reps] => 30
    )

[489-3] => Array
    (
        [weight] => 30
        [reps] => 30
    )

[492-1] => Array
    (
        [weight] => 500
        [distance] => 100000
    )

[492] => Array
    (
        [notes] => more notes
    )

I've tried a ksort, ksort($sorted, SORT_DESC); but it doesn't work too well with hyphenated keys, unless I'm doing something wrong?

share|improve this question
You might check out: sourcefrog.net/projects/natsort – Jared Farrish Dec 31 '12 at 0:54

1 Answer

up vote 6 down vote accepted

You can use uksort() with strnatcmp() as comparison function:

uksort($array, 'strnatcmp');
share|improve this answer
Worked a charm. Cheers. – Chaplin Dec 31 '12 at 1:05
Demo: codepad.org/8rrtecbK – Jared Farrish Dec 31 '12 at 1:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.