Random\Randomizer::getInt

(PHP 8 >= 8.2.0)

Random\Randomizer::getIntGet a uniformly selected integer

Description

publicRandom\Randomizer::getInt(int$min, int$max): int

Warning

This function is currently not documented; only its argument list is available.

Parameters

min

The lowest value to be returned.

max

The highest value to be returned.

Return Values

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

Errors/Exceptions

Examples

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

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

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

The above example will output something similar to:

42

See Also

To Top