| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: Aug 2005 Location: East Yorkshire, England
Posts: 2,689
![]() ![]() ![]() ![]() ![]() ![]() ![]() | Sorting an array. I've got an array in this format: PHP Code: PHP Code: |
| |
| | #2 (permalink) |
| NamePros Expert Join Date: Nov 2003 Location: Scotland
Posts: 5,069
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | The following demonstrated how to do it. I have used print_r to show the order before and after the sorting. PHP Code:
__________________ Manage your portfolio using my new Domain Portfolio Management script. Securing Your Domain Name From Theft
Last edited by peter@flexiwebhost; 09-01-2007 at 05:21 AM.
|
| |
| | #4 (permalink) |
| NamePros Expert Join Date: Nov 2003 Location: Scotland
Posts: 5,069
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | yeah I see what you have done. The asort returns 1 because it was successful in sorting the array.
__________________ Manage your portfolio using my new Domain Portfolio Management script. Securing Your Domain Name From Theft |
| |
| | THREAD STARTER #5 (permalink) |
| Senior Member Join Date: Aug 2005 Location: East Yorkshire, England
Posts: 2,689
![]() ![]() ![]() ![]() ![]() ![]() ![]() | Still not working PHP Code: Code: <pre>UNSORTED:
Array
(
[yahoo] => 4
[opera 9.22] => 9
[internet explorer 7.0] => 12
[internet explorer 6.0] => 29
)
SORTED:
Array
(
[yahoo] => 4
[opera 9.22] => 9
[internet explorer 7.0] => 12
[internet explorer 6.0] => 29
)
</pre> |
| |
| | #6 (permalink) |
| NamePros Expert Join Date: Nov 2003 Location: Scotland
Posts: 5,069
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | can you post the full code and the expected output. Looking at what you just posted I might be misunderstanding what you want. The array is already sorted by the values.
__________________ Manage your portfolio using my new Domain Portfolio Management script. Securing Your Domain Name From Theft |
| |
| | #7 (permalink) | ||||
| fka: leonardo Join Date: Aug 2006
Posts: 736
![]() ![]() ![]() ![]() ![]() |
| ||||
| |
| | #9 (permalink) |
| NamePros Expert Join Date: Nov 2003 Location: Scotland
Posts: 5,069
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | ahh so you wanted the numbers in reverse order i.e. highest first.
__________________ Manage your portfolio using my new Domain Portfolio Management script. Securing Your Domain Name From Theft |
| |