Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I sort Array keys in PHP with Cake?

Array
(
    [2] => h
    [5] => e
    [3] => u
    [1] => w
    [6] => r
    [9] => k
)

To

Array
(
    [1] => w
    [2] => h
    [3] => u
    [5] => e
    [6] => r
    [9] => k
)

Is it possible to use the Set::sort ($data, $path, $dir) cake function for this desired result?

share|improve this question
2  
Never mind that CakePHP is PHP, right? It's like those people who are like "i know how to do it in Ruby, but...in RAILS?" or "how do i do this in jQuery? No Javascript solutions please...". – cHao Jul 4 '12 at 16:51
Why this question have downvoted 4 times within a day, where the question had asked before 4 months? – Justin John Jul 5 '12 at 4:18
Cause someone edited it, bumping it back to the front page, i imagine. Or cause it was mentioned in PHP chat. :) – cHao Jul 5 '12 at 4:42
What you mean by PHP chat here? – Justin John Jul 5 '12 at 5:57
SO has chat rooms. One of them is the PHP room. Sometimes questions get linked to in there, and if the question has problems, it'll end up collecting downvotes (or even close/delete votes) from people who want to "clean up" the PHP tag. – cHao Jul 5 '12 at 6:12

2 Answers

up vote 2 down vote accepted

You cannot sort an simple array by his key in cake. You can only sort like this: (or you can use {n}.{n} )

 $array = (e,h,u,w,r);
 $result = Set::sort($array, '{n}', 'asc');
 pr($result);

For key sorting use ksort php function, or create in cake a ksort function with same properties and use it

ksort( $array );
foreach ( $array as $key => $val ) {
print "$key = $val<br />";
}
share|improve this answer

Can't you use the php ksort function?

ksort($array);
share|improve this answer
1  
I totally agree: Set::sort() was not invented for basic sort functionality...^^ – mark Mar 6 '12 at 10:55

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.