1
Well I have a variable $produtos
which receives 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
Good as I do to sort it by field Qtd, or in alphabetical order?
I’m 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 take the array and change its order. There are ways to do this?
You could have put the array in php instead of dump... think about the work people will have to test :(
– Guilherme Nascimento
I was just gonna say that @Guilhermenascimento
– Miguel
Good excuse, and that I am reading everything from the comic book, I will edit the question.
– Hugo Borges