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

相關(guān)文章
- PHP 安裝
- PHP 語(yǔ)法
- PHP 魔術(shù)常量
- PHP $_POST 變量
- PHP 文件上傳
- PHP JSON
- PHP array() 函數(shù)
- PHP array_change_key_case() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_values() 函數(shù)
- PHP extract() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)