我正在使用这条线根据名称字段按升序对我的二维数组进行排序。
array_multisort($contact[0]['name'],SORT_DESC,$contact[0]['image'],$contact[0]['url'],$contact[0]['catimg'],$contact[0]['count']);
但有时它没有正确排序。
有什么问题吗?
谢谢
如果要用于array_multisort
工作,则必须创建数据列,大致如下所示:
$names = array();
$images = array();
$urls = array();
// ... add more as needed
// make rows of data for sorting
foreach ($contact as $contact_row) {
$names[] = $contact_row['name'];
$images[] = $contact_row['image'];
$urls[] = $contact_row['url'];
// ... add more as needed
}
array_multisort($names, SORT_DESC, $images, $urls, $contact); // the last one is the array you want to sort
var_export($contact); // at this point this should be ordered
似乎,传递给函数的参数不是数组。
尝试使用 usort:
usort($contact, function($a, $b){
return strcmp($a['name'], $b['name']);
});