Jump to content

Sorting a PHP 2D Array?


random1

Recommended Posts

I have a 2D array that consists of values returned from a database query (columns and rows).

 

I'd like to be able to sort the array according to a field name (column heading) and Ascending or Descensing.

 

I've had a look at: http://www.php.net/manual/en/function.array-multisort.php

 

and the code asort($records);

 

But they don't seem to do the job.

 

How can a 2D array be sorted this way?

Link to comment
https://forums.phpfreaks.com/topic/83576-sorting-a-php-2d-array/
Share on other sites

Why not just use ORDER BY something (ASC|DESC) in the query?

 

yes if you mean array is the array that you get form DB upon fetching it will be very hard just use the orderby clause of your sql ..  although you can do that in php it will take number of codes to finish it and it not a good practice

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.