语法
<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>
<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>
本文标题:php mt_rand() 产生随机数
本文链接:https://www.haomeiwen.com/subject/dfderttx.html
网友评论