定义和用法
这个getrandmax()函数返回可以在 PHP 中使用的最大整数。该函数返回的值作为 rand() 函数生成随机数的上限。
这个函数总是返回一个整数。
用法
getrandmax ( void ):int
参数
Sr.No | 参数及说明 |
---|---|
1 | 这个函数不需要参数 |
返回值
PHP getrandmax() 函数返回可以在 PHP 中使用的最大可能整数。在 64 位 Windows 上,数字是 2147483647
PHP版本
该函数在 PHP 4.x、PHP 5.x 和 PHP 7.x 版本中可用。
示例
以下示例返回最大可能的整数 -
<?php
echo "Largest Integer = " . getrandmax() . "\n";
?>
输出
这可能会产生以下结果(它是一个随机数,更有可能每次返回不同的数字)-
Largest Integer = 2147483647
相关用法
- PHP get_resource_type()用法及代码示例
- PHP getimagesizefromstring()用法及代码示例
- PHP getservbyport()用法及代码示例
- PHP get_class()用法及代码示例
- PHP get_declared_interfaces()用法及代码示例
- PHP gethostnamel()用法及代码示例
- PHP getcwd()用法及代码示例
- PHP get_resource_id()用法及代码示例
- PHP getcwd( )用法及代码示例
- PHP get_class_methods()用法及代码示例
- PHP get_headers()用法及代码示例
- PHP gethostbyname()用法及代码示例
- PHP gettimeofday()用法及代码示例
- PHP getprotobynumber()用法及代码示例
- PHP get_class_vars()用法及代码示例
- PHP gethostbyaddr()用法及代码示例
- PHP getimagesize()用法及代码示例
- PHP get_object_vars()用法及代码示例
- PHP gettype()用法及代码示例
- PHP get_browser()用法及代码示例
注:本文由纯净天空筛选整理自Malhar Lathkar大神的英文原创作品 PHP getrandmax() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。