如何通过bestsort配置数组求助$ a?
如果$ best_sort中有排序键,则必须先放置$ a中的项目,
如果$ best_sort中没有排序键,则项目保留原始排序顺序。
<?php
$a=array(
'pn=1',
'pp=20',
'filter=price',
'sub_cPath=1',
'type=2'
);
$best_sort=array(
'sub_cPath',
'pn',
'pp',
'date'
);
function my_sort(){
// how to resort the $a by $best sort?
// the result should be bellow
}
$result=array(
'sub_cPath=1',
'pn=1',
'pp=20',
'filter=price',
'type=2'
);
?>