さて、私の質問は複雑です。
私はそのjsonファイルを持っています:
{
"books": [
{
"book": [
{
"Title": "Java How to Program",
"Author": "Deitel & Deitel",
"Edition": "2007"
}
]
},
{
"book": [
{
"Title": "Patterns of Enterprise Application Architecture",
"Author": "Martin Fowler",
"Edition": "2002"
}
]
},
{
"book": [
{
"Title": "Head First Design Patterns",
"Author": "Elisabeth Freeman",
"Edition": "2004"
}
]
},
{
"book": [
{
"Title": "Internet & World Wide Web: How to Program",
"Author": "Deitel & Deitel",
"Edition": "2007"
}
]
}
]
}
私のPHPでは、これがあります:
$file = file_get_contents('books.json');
$json = json_decode($file, true);
複数のルールで配列をソートするにはどうすればよいですか? 例えば:
echo sort_my_array('Title', ASC, 'Author', DESC, $json);
私は非常に多くの方法で試しましたが、array_multidimensional を使用しようとするとエラーが発生すると思います。
誰かがこれを作成する方法を私に説明できますか?
前もって感謝します