I have the following array and I would like to sort it according another array and not DESC or ASC
DESC
ASC
$array = array( \'note\' => a
I think its not possible. Instead of that do like this
$custom_function_value = custom_function(); array_multisort($array['type'], $array['year'], $custom_function_value, $array['note']);
I think this will give your desired output.