phpbar.de logo

Mailinglisten-Archive

[php] array nach schlüssel sortieren

[php] array nach schlüssel sortieren

Michael Borchers list at tridemail.de
Mon Jun 4 15:08:22 CEST 2007


> <?php
> class arraySort
> {
> function multisort_array($array, $key) {
>  if(is_array($array)) {
>   $this->key = $key;
> 
>   usort($array, array(arraySort, 'compare_key'));
> 
>   return $array;
>  }
> }
> 
> function compare_key($a, $b) {
>  return strnatcasecmp($a[$this->key], $a[$this->key]);
> }
> }
> ?> 


Ups, ein kleiner Fehler! Unten die korrekte Version.


function compare_key($a, $b) {
 return strnatcasecmp($a[$this->key], $b[$this->key]);
}
}


php::bar PHP Wiki   -   Listenarchive