Salve a tutti.
Ho un array così formato:
array(
____[0] => array(
________'nome' => 'valore',
________'id' => 4
____),
____[1] => array(
________'nome' => 'valore',
________'id' => 12
____),
____[2] => array(
________'nome' => 'valore',
________'id' => 6
____)
)
Vorrei ordinarlo per id crescente. Come posso fare?
Grazie