我有以下数组:
$franchise_a_status[] = array(
'id' => $franchise['franchise_id'],
'text' => $franchise['franchise_surname']. ' ' .$franchise['franchise_firstname'].' '.'('.$distance.')'
);
$franchise 数组是从数据库中填充的,距离变量从Google 距离矩阵中检索信息。我希望数组按距离顺序排序 - 从最近到最远。
我认为这很容易:
asort($franchise_a_status);
可悲的是我错了。我将如何根据距离对该数组进行排序?