Skip to content

Instantly share code, notes, and snippets.

@blar
Created February 13, 2015 15:19
Show Gist options
  • Save blar/da29823fb2c74a5aba22 to your computer and use it in GitHub Desktop.
Save blar/da29823fb2c74a5aba22 to your computer and use it in GitHub Desktop.
<?php
$y = array(
'a',
'c',
'b',
'd'
);
$x = array(
&$y,
SORT_DESC,
SORT_STRING
);
array_multisort(...$x);
print_r($y);
Array
(
[0] => d
[1] => c
[2] => b
[3] => a
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment