-1
array(
[0] => array(5, "hi"),
[1] => array(2, "hello"),
[2] => array(9, "test")
)
をどのように私は[n]は[0]により、この配列をソートすることができますか?
最終結果はこのようなものにする必要があります。
array(
[0] => array(9, "test")
[1] => array(5, "hi"),
[2] => array(2, "hello"),
)
で4レベルの値で多次元配列をソートする[方法の可能性の重複をPHP](http://stackoverflow.com/questions/2673835/how-to-sort-a-multi-dimensional-array-by-a-4th-level-value-in-php) –