美文网首页
php mt_rand() 产生随机数

php mt_rand() 产生随机数

作者: karl_song | 来源:发表于2016-05-09 14:48 被阅读68次
语法

<pre>
mt_rand(min,max)
</pre>

例子

<pre>
<?php
echo(mt_rand());
echo(mt_rand());
echo(mt_rand(10,100));
?>
</pre>

输出类似

<pre>
3150906288
513289678
35
</pre>

具体参考:

http://www.w3school.com.cn/php/func_math_mt_rand.asp

相关文章

网友评论

      本文标题:php mt_rand() 产生随机数

      本文链接:https://www.haomeiwen.com/subject/dfderttx.html