gmp_random_bits()函数是PHP中的一个内置函数,它会生成一个随机数。因此,随机数将在0到(2 *位)– 1的范围内。这里的位必须大于0,并且位的最大值受可用内存的限制。这里的GMP是指(GNU多精度),用于大数。
用法:
GMP gmp_random_bits ( int $bits )
参数:上面的函数接受如上所述和以下描述的单个参数:
- $bits : IT仅接受一个参数。此参数可以是PHP 5.5及更低版本中的GMP数字资源,PHP 5.6及更高版本中的GMP对象,或者也可以传递数字字符串,前提是可以将该字符串转换为数字。
返回值:该函数返回一个随机的GMP编号。
例子:
Input : bits = 3 Output : 3 Input : bits = 5 Output : 15 Note: Output will vary every time on execution
示例1:
<?php
// PHP program to demonstrate
// the gmp_random_bits() function
// random number within 0 to 15
$rand = gmp_random_bits(4);
echo gmp_strval($rand) . "\n";
?>
输出:
10
示例2:
<?php
// PHP program to demonstrate
// the gmp_random_bits() function
// random number within 0 to 31
$rand = gmp_random_bits(5);
// gmp_strval converts GMP number to string
// representation in given base(default 10).
echo gmp_strval($rand) . "\n";
?>
输出:
15
参考:http://php.net/manual/en/function.gmp-random-bits.php
相关用法
- p5.js day()用法及代码示例
- PHP dir()用法及代码示例
- PHP each()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- p5.js int()用法及代码示例
- d3.js d3.max()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js str()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- d3.js d3.lab()用法及代码示例
注:本文由纯净天空筛选整理自priya_1998大神的英文原创作品 PHP | gmp_random_bits() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。