【发布时间】:2013-10-10 14:31:41
【问题描述】:
我正在尝试对这个多维数组进行排序。我不想按第二个数组中包含的名称对数组的第一个维度进行排序。
我将如何按“名称”的字母顺序对其进行排序:
Array
(
[0] => Array
(
["name"] => "Delta"
["other1"] => "other data..."
["other2"] => "other data..."
)
[1] => Array
(
["name"] => "Beta"
["other1"] => "other data..."
["other2"] => "other data..."
)
[2] => Array
(
["name"] => "Alpha"
["other1"] => "other data..."
["other2"] => "other data..."
)
)
结果是这样的:
Array
(
[0] => Array
(
["name"] => "Alpha"
["other1"] => "other data..."
["other2"] => "other data..."
)
[1] => Array
(
["name"] => "Beta"
["other1"] => "other data..."
["other2"] => "other data..."
)
[2] => Array
(
["name"] => "Delta"
["other1"] => "other data..."
["other2"] => "other data..."
)
)
非常感谢您的帮助!
【问题讨论】:
-
Sort an array by a child array's value in PHP 或 stackoverflow.com/questions/2699086/… 和许多其他人的可能重复项...您是否尝试过搜索?
-
你试过了吗?