Ben şu JSON var:
{
"row": [
{
"sort":3,
"type":"fat",
"widgets":
[
{"values": [3,9] },
{"values": [8,4] }
]
},
{
"sort":2,
"type":"three",
"widgets":
[
{"values": [3,4] },
{"values": [12,7] },
{"values": [12,7] }
]
}
]
}
Ve bunu çıktı bu PHP:
foreach ( $value->row as $therow )
{
echo "<div class='row ".$therow->type."'>";
foreach ( $therow->widgets as $thewidgets )
{
echo "<div class='widget'>";
echo $thewidgets->values[0];
echo "</div>";
}
echo "</div>";
}
Ne yapmak istiyorum, JSON sıralama değere göre sıralama herhangi bir fikir çıktıya nedir?