PHP code example of imsamurai / arraysort
1. Go to this page and download the library: Download imsamurai/arraysort library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
imsamurai / arraysort example snippets
CakePlugin::load('ArraySort');
App::uses('ArraySort', 'ArraySort.Utility');
$sorted_array = ArraySort::multisort($array, $params);
$params = array(
<field1> => <direction>,
<field2> => <direction2>,
...
);
$params = array(
'rank' => 'desc',
'created' => 'asc'
);