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

I have an array of email addresses that I am trying to sort, but I'm getting odd results. Here is what I mean:

sort($array);
print_r($array);
...[79] => 91******@******.com [80] => 9l***@**********.com 
[81] => ps*******@**********.com [82] => a.c******@*****.com 
[83] => a.d****@*****.com...

What would cause that email beginning with p's to be mixed in after the numbers and before the A's?

I removed that email address from the database and replaced it with "testing" and then "testing" appeared in the same position.

share|improve this question
Perhaps there is a leading space before the p? – DarkCthulhu Nov 3 '12 at 22:26
6  
var_dump($array); – zerkms Nov 3 '12 at 22:27
Can you paste tho whole code (how do you get data from db), it has to be something with the database... – aljana Nov 3 '12 at 22:34
1  
maybe if you showed us more code or the list you are trying to sort. Im having a problem with sorting in php as well you can look at my question to see it. Its a different sort but maybe there is some common problems? – Xitcod13 Nov 3 '12 at 22:34
var_dump($array); returns: ...[81]=> string(126) "ps******@*****.com" [82]=> string(20) "a.c*****@*****.com"... – Jay Nov 3 '12 at 22:57
show 1 more comment

3 Answers

To make sure you're comparing in English put this before your sort:

  setlocale (LC_COLLATE, 'en_US');
  sort($array);

If this changes anything and the sort works, your system is set to compare strings not as US/English.

Other than that, I can only think of spaces being at the start of the string or some starting with upper case and others starting lower. To fix cased string sorting issues, you could do:

  natsort($array);
share|improve this answer
actually you can have a limited kind of chars in the email. yes it is possible to have a mistake when entering email, but inspecting the code shows that the ps consists of latin chars. – Reflective Nov 3 '12 at 22:46

You have a space before ps ... when I inspected the code you posted it is visible. Make a trim before sorting.

share|improve this answer

maybe you are sorting with some weird rule. Force the sorting mode to "string" passing SORT_STRING

sort($array, SORT_STRING);

and tell us what it spit out.

sort() uses SORT_REGULAR as default, I suspect that the emails with numeric prefixes (92*) are considered integers thus the weird sorting.

share|improve this answer

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.