Well, I have a $produtos
variable that gets the following array:
array (size=6)
0 =>
array (size=4)
'id' => string '107' (length=3)
'nome' => string 'LAREIRA PEQ.' (length=12)
'qtd' => float 43
'total' => float 64500
1 =>
array (size=4)
'id' => string '108' (length=3)
'nome' => string 'CHORAQUERIA PEQ.' (length=16)
'qtd' => float 60
'total' => float 48000
2 =>
array (size=4)
'id' => string '109' (length=3)
'nome' => string 'JOGO DE FACAS' (length=13)
'qtd' => float 90
'total' => float 27000
3 =>
array (size=4)
'id' => string '111' (length=3)
'nome' => string 'PROVALEIRA' (length=10)
'qtd' => float 100
'total' => float 6000
4 =>
array (size=4)
'id' => string '110' (length=3)
'nome' => string 'COOLERS' (length=7)
'qtd' => float 84
'total' => float 21000
5 =>
array (size=4)
'id' => string '112' (length=3)
'nome' => string 'CHAMPANHEIRA' (length=12)
'qtd' => float 28
'total' => float 1962.64
How do I sort it by the qtd field, or in alphabetical order?
I am mounting the array like this:
while ($resultado = mysqli_fetch_object($consulta)) {
// Array com dados do produto
$curva[] = array(
"id" => $resultado->id,
"nome" => $resultado->nome,
"qtd" => $qtd,
"total" => $total
);
}
I need to get the array and change the order of it. Can you do that?