扫码一下
查看教程更方便
CSPRNG
简介CSPRNG(Cryptographically Secure Pseudo-Random Number Generator,伪随机数产生器)。
PHP 7 通过引入几个 CSPRNG 函数提供一种简单的机制来生成密码学上强壮的随机数。
语法格式
string random_bytes ( int $length )
参数
返回值
<?php
$bytes = random_bytes(5);
print(bin2hex($bytes));
?>
以上程序执行输出结果为:
6f36d48a29
语法格式
int random_int ( int $min , int $max )
参数
返回值
<?php
print(random_int(100, 999));
print(PHP_EOL);
print(random_int(-1000, 0));
?>
以上程序执行输出结果为:
723
-64