rand()是PHP中的一個內置函數,用於生成隨機數。
用法:
rand() The rand() function is use to generate a random integer.
要生成某個範圍內的隨機整數:
用法
rand(min,max) min specifies the lowest value that will be returned. max specifies the highest value to be returned. This function will generate a random value in the range [min,max]
注意
如果未指定最小值和最大值,則默認分別為0和getrandmax()。
例
- rand()將返回0到getrandmax()之間的隨機整數。
- rand(15,35)將返回範圍為[15,35]的隨機整數。
<?php
// Generating a random number
$randomNumber = rand();
// Print
print_r($randomNumber);
// New Line
print_r("\n");
// Generating a random number in a
// Specified range.
$randomNumber = rand(15,35);
// Print
print_r($randomNumber);
?>
注意:
每次運行時,代碼的輸出可能會更改。因此輸出可能與指定的輸出不匹配。
輸出:
1257424548 28
相關用法
- p5.js nfc()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- CSS var()用法及代碼示例
- d3.js d3.set.add()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 PHP | rand() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。