tdphp/td3/17.php

18 lines
328 B
PHP
Raw Permalink Normal View History

2023-03-06 15:21:44 +01:00
<?php
// Création du tableau associatif
$fruits = array(
"pomme" => 3,
"orange" => 2,
"banane" => 4,
"kiwi" => 1
);
// Tri du tableau associatif dans l'ordre décroissant
arsort($fruits);
// Affichage du tableau trié
foreach($fruits as $fruit => $quantite) {
echo $fruit . " : " . $quantite . "<br>";
}