按多个键按特定顺序对数组进行排序

编程入门 行业动态 更新时间:2024-10-24 14:22:31
本文介绍了按多个键按特定顺序对数组进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想按以下顺序按多个键对以下数组进行排序:首先按类型",然后按产品",最后按名称".使用usort可以很容易地做到这一点,尽管我的客户希望按特定顺序对产品"进行排序:订书机,装订机,书本.

I want to sort the following array by multiple keys in the following order: First by "type", then "product", and lastly by "name". This is pretty easily done with usort, although my clients wants "product" sorted in a specific order: Stapler, Binder, Book.

$arr = array( array( 'type' => 'School', 'product' => 'Book', 'name' => 'My book', 'data' => '...' ), array( 'type' => 'Job', 'product' => 'Stapler', 'name' => 'My stapler', 'data' => '...' ), array( 'type' => 'Personal', 'product' => 'Binder', 'name' => 'My binder', 'data' => '...' ), array( 'type' => 'School', 'product' => 'Book', 'name' => 'My book', 'data' => '...' ) );

有人知道实现此目标的聪明方法吗?

Does anyone know a clever way to accomplish this?

推荐答案

usort($arr, function ($a, $b) { // by type $r = strcmp($a['type'], $b['type']); if ($r !== 0) { return $r; } // by product // note: one might want to check if `$a/$b['product']` really is in `$order` $order = array('Stapler', 'Binder', 'Book'); $r = array_search($a['product'], $order) - array_search($b['product'], $order); if ($r !== 0) { return $r; } // or similar, with a little help by @fab ;) /* $order = array('Stapler' => 0, 'Binder' => 1, 'Book' => 2); $r = $order[$a['product']] - $order[$b['product']]; if ($r !== 0) { return $r; } */ // name return strcmp($a['name'], $b['name']); });

更多推荐

按多个键按特定顺序对数组进行排序

本文发布于:2023-11-30 00:54:55,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1648186.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:多个   数组   顺序

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!