定義和用法
這個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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。