Jump to content

Sorting Arrays


StormTheGates

Recommended Posts

Hello everyone. I am aware of the sort() function, however its not doing what I want it to do. I have an array for cards, and need to sort them. For instance I have this array:

 

array("1s","4d","13h","7d","8c");

 

The problem is that when it sorts it sees 13 lower than 1. Or it notices the 1 before anything so I get a sort like this

 

13h

1s

4d

7d

8c

 

When I really need this

 

1s

4d

7d

8c

13h

 

Any ideas how this could be achieved? Thanks

Link to comment
https://forums.phpfreaks.com/topic/46881-sorting-arrays/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.