問題があります。PHPは日付で多次元配列をソートします
Array ([0] =>
Array (
[0] => Testguy2's post.
[1] => testguy2
[2] => 2013-04-03
)
[1] => Array (
[0] => Testguy's post.
[1] => testguy
[2] => 2013-04-07
)
);
は、私が最も古い日付の最新の日付からの投稿をソートしたいので、それは次のようになります:私は多次元配列を持って、それは次のようになります
Array ([1] => Array (
[0] => Testguy's post.
[1] => testguy
[2] => 2013-04-07
)
[0] => Array (
[0] => Testguy2's post.
[1] => testguy2
[2] => 2013-04-03
)
);
どのようにソートを行いますそれ?
これは正常に動作します... –