«

PHP简单获取随机数的常用方法小结

时间:2024-2-29 15:39     作者:韩俊     分类: PHP


本文实例讲述了PHP简单获取随机数的常用方法。分享给大家供大家参考,具体如下:

1.直接获取从min-max的数,例如1-20:

$randnum = mt_rand(1, 20);

2.在一个数组里面随机选择一个(验证码的时候需要字母、数字混合的情况)

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:这里再为大家提供两款功能类似的在线工具供大家参考:

在线随机数字/字符串生成工具:
http://tools.maopiaopiao.com/aideddesign/suijishu

高强度密码生成器:
http://tools.maopiaopiao.com/password/CreateStrongPassword

希望本文所述对大家PHP程序设计有所帮助。

标签: php php教程

热门推荐