vote up 4 vote down star
1

I have CSV data loaded into a multidimensional array. In this way each "row" is a record and each "column" contains the same type of data. I am using the function below to load my CSV file.


function f_parse_csv($file, $longest, $delimiter)
  {
  $mdarray = array();
  $file    = fopen($file, "r");
  while ($line = fgetcsv($file, $longest, $delimiter))
    {
    array_push($mdarray, $line);
    }
  fclose($file);
  return $mdarray;
  }

I need to be able to specify a column to sort so that it rearranges the rows. One of the columns contains date information in the format of "Y-m-d H:i:s" and I would like to be able to sort with the most recent date being the first row.

flag

7 Answers

vote up 8 vote down

With usort. Here's a generic solution, that you can use for different columns:

class TableSorter {
  protected $column;
  function __construct($column) {
    $this->column = $column;
  }
  function sort($table) {
    usort($table, array($this, 'compare'));
    return $table;
  }
  function compare($a, $b) {
    if ($a[$this->column] == $b[$this->column]) {
      return 0;
    }
    return ($a[$this->column] < $b[$this->column]) ? -1 : 1;
  }
}

To sort by first column:

$sorter = new TableSorter(0); // sort by first column
$mdarray = $sorter->sort($mdarray);
link|flag
I get Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' on the second line of that class. – Melikoth Sep 18 '08 at 21:35
this code requires php5 – Devon Sep 18 '08 at 21:50
Replace "protrected" with "var" and "__construct" with "TableSorter", and it will work in PHP4. Notice however, that PHP4 is discontinued. – troelskn Sep 18 '08 at 22:23
I set PHP to v5, didn't know it was running v4 by default. Having looked at it for a while I think I understand how to modify it for different types of sorts as well – Melikoth Sep 18 '08 at 23:19
vote up 4 vote down

You can use array_multisort()

Try something like this:

foreach ($mdarray as $key => $row) {
    $dates[$key]  = $row[0]; 
    // of course, replace 0 with whatever is the date field's index
}

array_multisort($dates, SORT_DESC, $mdarray);
link|flag
I think this shows me why I couldn't get array_multisort to work before. – Melikoth Sep 18 '08 at 21:43
array_multisort() is the way I've always done it, though it can be a bit tricky to wrap your head around how it works at first. – Garrett Albright Sep 18 '08 at 22:46
This is a very good example for figuring that out. – Melikoth Sep 18 '08 at 23:24
vote up 2 vote down

The "Usort" function is your answer. http://si.php.net/manual/en/function.usort.php

link|flag
vote up 0 vote down

I prefer to use array_multisort http://us2.php.net/manual/en/function.array-multisort.php

link|flag
vote up 0 vote down

Here is a php4/php5 class that will sort one or more fields:

// a sorter class
//  php4 and php5 compatible
class Sorter {

  var $sort_fields;
  var $backwards = false;
  var $numeric = false;

  function sort() {
    $args = func_get_args();
    $array = $args[0];
    if (!$array) return array();
    $this->sort_fields = array_slice($args, 1);
    if (!$this->sort_fields) return $array();

    if ($this->numeric) {
      usort($array, array($this, 'numericCompare'));
    } else {
      usort($array, array($this, 'stringCompare'));
    }
    return $array;
  }

  function numericCompare($a, $b) {
    foreach($this->sort_fields as $sort_field) {
      if ($a[$sort_field] == $b[$sort_field]) {
        continue;
      }
      return ($a[$sort_field] < $b[$sort_field]) ? ($this->backwards ? 1 : -1) : ($this->backwards ? -1 : 1);
    }
    return 0;
  }

  function stringCompare($a, $b) {
    foreach($this->sort_fields as $sort_field) {
      $cmp_result = strcasecmp($a[$sort_field], $b[$sort_field]);
      if ($cmp_result == 0) continue;

      return ($this->backwards ? -$cmp_result : $cmp_result);
    }
    return 0;
  }
}

/////////////////////
// usage examples

// some starting data
$start_data = array(
  array('first_name' => 'John', 'last_name' => 'Smith', 'age' => 10),
  array('first_name' => 'Joe', 'last_name' => 'Smith', 'age' => 11),
  array('first_name' => 'Jake', 'last_name' => 'Xample', 'age' => 9),
);

// sort by last_name, then first_name
$sorter = new Sorter();
print_r($sorter->sort($start_data, 'last_name', 'first_name'));

// sort by first_name, then last_name
$sorter = new Sorter();
print_r($sorter->sort($start_data, 'first_name', 'last_name'));

// sort by last_name, then first_name (backwards)
$sorter = new Sorter();
$sorter->backwards = true;
print_r($sorter->sort($start_data, 'last_name', 'first_name'));

// sort numerically by age
$sorter = new Sorter();
$sorter->numeric = true;
print_r($sorter->sort($start_data, 'age'));
link|flag
Does this only work with associative arrays? – Melikoth Sep 18 '08 at 23:23
yes - associative arrays only. Now that I look at it, it is not the right solution for this problem. – Devon Sep 22 '08 at 20:54
vote up 0 vote down

Before I could get the TableSorter class to run I had came up with a function based on what Shinhan had provided.

function sort2d_bycolumn($array, $column, $method, $has_header)
  {
  if ($has_header)  $header = array_shift($array);
  foreach ($array as $key => $row) {
    $narray[$key]  = $row[$column]; 
    }
  array_multisort($narray, $method, $array);
  if ($has_header) array_unshift($array, $header);
  return $array;
  }
  • $array is the MD Array you want to sort.
  • $column is the column you wish to sort by.
  • $method is how you want the sort performed, such as SORT_DESC
  • $has_header is set to true if the first row contains header values that you don't want sorted.
link|flag
vote up 0 vote down

foreach ($array2sort as $key => $row) { $data[$key] = $row[0];

}

array_multisort($data, SORT_ASC, $array2sort);

exactly what Shinhan told... awesome ...

cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.