我需要一種重新排列多維數組的方法。有沒有簡單的解決方案呢?我之前一直使用array_values來完成單個數組,但它不支持多維數組。帶有多維數組的PHP array_values
我的陣列看起來像這樣
Array
(
[2] => Array
(
[text] => test
)
[5] => Array
(
[text] => test
)
[8] => Array
(
[text] => test
)
)
我想它是
Array
(
[0] => Array
(
[text] => test
)
[1] => Array
(
[text] => test
)
[2] => Array
(
[text] => test
)
)
如果我理解正確,你想按鍵排序,對不對?不刪除數組鍵?或者,你是按個別「文本」項目排序? – pp19dd 2012-03-20 20:58:34
可能重複? [你如何在PHP中重新索引數組](http://stackoverflow.com/questions/591094/how-do-you-reindex-an-array-in-php) – mseancole 2012-03-20 21:08:23
可能的重複[Array \ _values from multidimensional array ](http://stackoverflow.com/questions/9694072/array-values-from-multidimensional-array) – azerafati 2017-04-04 11:25:58