本文实例讲述了PHP简单获取随机数的常用方法。分享给大家供大家参考,具体如下:
1.直接获取从min-max的数,例如1-20:
1
|
$randnum = mt_rand(1, 20); |
2.在一个数组里面随机选择一个(验证码的时候需要字母、数字混合的情况)
1
2
3
4
5
6
7
|
function randUid(){ $str = "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20" ; //要显示的字符,可自己进行增删 $list = explode ( "," , $str ); $cmax = count ( $list ) - 1; $randnum = mt_rand(0, $cmax ); $uid = $list [ $randnum ]; } |
PS:这里再为大家提供两款功能类似的在线工具供大家参考:
在线随机数字/字符串生成工具:https://tool.zzvips.com/t/randkey/
希望本文所述对大家PHP程序设计有所帮助。