Code source PHP


 Valeurs maximum ou minimum d'un tableau
Retour à la page précédente pour choisir une fiche PHP <?php
$tableau=array("102","23","12","167","17");
echo max($tableau);
// Retournera : 167
?>

167


<?php
$tableau=array("102","23","12","167","17");
echo min($tableau);
// Retournera : 12
?>

12