CSPRNG 関数
PHP Manual

random_int

(PHP 7)

random_intGenerates cryptographically secure pseudo-random integers

説明

int random_int ( int $min , int $max )

Generates cryptographic random integers that are suitable for use where unbiased results are critical, such as when shuffling a deck of cards for a poker game.

この関数が使う不規則性のソースはつぎのとおりです。

注意: この関数は PHP 7.0 で追加されたものですが、PHP 5.2 から 5.6 までのバージョンで使える » ユーザーランドの実装 も公開されています。

パラメータ

min

The lowest value to be returned, which must be PHP_INT_MIN or higher.

max

The highest value to be returned, which must be less than or equal to PHP_INT_MAX.

返り値

Returns a cryptographically secure random integer in the range min to max, inclusive.

エラー / 例外

例1 random_int() example

<?php
var_dump
(random_int(100999));
var_dump(random_int(-10000));
?>

上の例の出力は、 たとえば以下のようになります。

int(248)
int(-898)

参考


CSPRNG 関数
PHP Manual