Example #1
0
 /**
  * インデックスを保持したままソートする
  */
 public static function asort(array $objects, $method, $order = 'asc')
 {
     $sort = new self($objects);
     $sort->method($method);
     $sort->order($order);
     $sort->asort(true);
     return $sort->objects();
 }