當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP rand()用法及代碼示例



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()。

  1. rand()將返回0到getrandmax()之間的隨機整數。
  2. 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


相關用法


注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 PHP | rand() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。