如何通过 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'
);
?>