我有两个关联数组
$reference = array(
'type_drink' => 'value',
'type_plate' => 'value',
'type_fork' => 'value',
'non_type' => 'value'
);
$target = array(
'type_plate' => 'value other',
'type_drink' => 'value other'
);
什么是重新排序目标以匹配键的 $reference 顺序并忽略 $target 中不存在的键的好方法,以便最终
$target = array(
'type_drink' => 'value other',
'type_plate' => 'value other'
);