PHP rand() 函數(shù)
PHP rand() 函數(shù)
實(shí)例
生成隨機(jī)數(shù):
<?php
echo(rand() . "<br>");
echo(rand() . "<br>");
echo(rand(10,100));
?>
echo(rand() . "<br>");
echo(rand() . "<br>");
echo(rand(10,100));
?>
運(yùn)行實(shí)例 ?
定義和用法
rand() 函數(shù)生成隨機(jī)整數(shù)。
提示:如果您想要一個(gè)介于 10 和 100 之間(包括 10 和 100)的隨機(jī)整數(shù),請(qǐng)使用 rand (10,100)。
提示:mt_rand() 函數(shù)是產(chǎn)生隨機(jī)值的更好選擇,返回結(jié)果的速度是 rand() 函數(shù)的 4 倍。
語法
rand();
or
rand(min,max);
or
rand(min,max);
參數(shù) | 描述 |
---|---|
min | 可選。規(guī)定返回的最小數(shù)。默認(rèn)是 0。 |
max | 可選。規(guī)定返回的最大數(shù)。默認(rèn)是 getrandmax()。 |
技術(shù)細(xì)節(jié)
返回值: | 介于 min(或 0)與 max(或 mt_getrandmax())之間(包括邊界值)的隨機(jī)整數(shù)。 |
---|---|
返回類型: | Integer |
PHP 版本: | 4+ |
PHP 更新日志: | PHP 4.2.0:隨機(jī)數(shù)生成器自動(dòng)播種。 |

相關(guān)文章
- PHP 語法
- PHP $_GET 變量
- PHP 錯(cuò)誤處理
- PHP 過濾器
- PHP JSON
- PHP array_intersect_assoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_values() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP current() 函數(shù)
- PHP key() 函數(shù)
- PHP krsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP HTTP 函數(shù)
- PHP 5 MySQLi 函數(shù)