Codice PHP:
<?
foreach(range(0,62) as $z){
$smiley[$z]=file_get_contents('./txt/'.$z); //associa un numero preimpostato a $smiley[+1]
}
asort($smiley); //lo ordino come Dio comanda
foreach($smiley as $nome => $quantita){
echo "nome: $nome - quantità: $quantita<br>\n"; //lo dumpo tutto
}
come mai leggo questo:
nome: 29 - quantità: 0
nome: 24 - quantità: 0
nome: 23 - quantità: 0
nome: 20 - quantità: 0
nome: 19 - quantità: 0
nome: 17 - quantità: 0
nome: 21 - quantità: 0
nome: 22 - quantità: 0
nome: 18 - quantità: 0
nome: 12 - quantità: 33
nome: 2 - quantità: 666
vorrei piuttosto che la quantità fosse ordinata dal più grande al più piccolo...
nome: 12 - quantità: 33
nome: 2 - quantità: 666
quindi coś:
nome: 2 - quantità: 666
nome: 12 - quantità: 33
GRAZIE MILLE!