关于这些元素如何在不同的数组“$sorting_order”中排序,我想对数组“$to_sort”中的元素进行排序。
但是,我不知道如何处理两个数组包含不同元素的情况。
$sorting_order[]=[introduction,skills,education,experience]
$to_sort[]=[experience,skills,education]
这是期望的结果:
$sorted[]=[skills,education,experience]
**解决方案:我得到了这个解决方案,
$sorted = array_intersect($sorting_order, $to_sort);
print_r($sorted);
**