<?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>";
}