语法
<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>