array, bool, int, float, string
NULL
comme valeur par défaut à un paramètre permet de le rendre facultatif.void
depuis PHP 7.1) sont disponibles pour exprimer le type de retour d'une fonction.// alea retourne un entier
function alea() : int
{
$choix = rand(0,100);
return $choix;
}
// aleaN prend un entier entrée et retourne un entier
function aleaN(int $Nombre) : int
{
$choix = rand(0,$Nombre);
return $choix;
}