PHP 8.1.28 Released!

Random\Randomizer::getInt

(PHP 8 >= 8.2.0)

Random\Randomizer::getIntGet a uniformly selected integer

Description

public Random\Randomizer::getInt(int $min, int $max): int

Avertissement

Cette fonction est actuellement non documentée ; seule la liste des arguments est disponible.

Liste de paramètres

min

The lowest value to be returned.

max

The highest value to be returned.

Valeurs de retour

A uniformly selected integer from the closed interval [min, max]. Both min and max are possible return values.

Erreurs / Exceptions

Exemples

Exemple #1 Random\Randomizer::getInt() example

<?php
$r
= new \Random\Randomizer();

// Random integer in range:
echo $r->getInt(1, 100), "\n";
?>

Résultat de l'exemple ci-dessus est similaire à :

42

Voir aussi

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top