本文介绍了使用PHP的范围[min-max]中的随机数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有一种方法可以根据最小值和最大值生成随机数?
Is there a way to generate a random number based on a min and max?
例如,如果min为1且max为20,则应生成1到20之间的任何数字,包括1到20?
For example, if min was 1 and max 20 it should generate any number between 1 and 20, including 1 and 20?
推荐答案
<?php
$min=1;
$max=20;
echo rand($min,$max);
?>
这篇关于使用PHP的范围[min-max]中的随机数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!