PHP: Hypertext Preprocessor (original) (raw)

Random\Randomizer::nextInt

(PHP 8 >= 8.2.0)

Random\Randomizer::nextInt — Get a positive integer

Description

public Random\Randomizer::nextInt(): int

Warning

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

Parameters

This function has no parameters.

Return Values

A positive integer between 0 and a maximum value depending on the number of bytes returned from Random\Engine::generate(). The exact maximum can be calculated as 2$engine_bytes * 8 - 1 - 1.

Errors/Exceptions

Examples

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

<?php $r = new \Random\Randomizer();// Random "next" integer: echo $r->nextInt(), "\n"; ?>

The above example will output something similar to:

Found A Problem?

There are no user contributed notes for this page.