imsamurai / arraysort
CakePHP utility for sorting arrays by multiple fields
Installs: 3 071
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Type:cakephp-plugin
Requires
This package is not auto-updated.
Last update: 2024-11-09 15:50:08 UTC
README
Check out ArraySort API Documentation
Abstract
Installation
cd my_cake_app/app
git clone git://github.com/imsamurai/cakephp-arraysort-utility.git Plugin/ArraySort
or if you use git add as submodule:
cd my_cake_app
git submodule add "git://github.com/imsamurai/cakephp-arraysort-utility.git" "app/Plugin/ArraySort"
then add plugin loading in Config/bootstrap.php
CakePlugin::load('ArraySort');
Usage
In any place of your code:
App::uses('ArraySort', 'ArraySort.Utility'); $sorted_array = ArraySort::multisort($array, $params);
where $array
is array to sort,
$params
can be string ('asc' or 'desc') or array like this:
$params = array( <field1> => <direction>, <field2> => <direction2>, ... );
For example:
$params = array( 'rank' => 'desc', 'created' => 'asc' );
With this $params method will sort $array by comparing each elements firstly by rank field, if they have equal rank then sort by created field.