一个生成四位随机数的PHP代码

纯数字的四位随机数rand(1000,9999)数字和字符混搭的四位随机字符串:function GetRandStr($len) { $chars = array( a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R
纯数字的四位随机数
rand(1000,9999)
数字和字符混搭的四位随机字符串:

function GetRandStr($len) 
{ 
    $chars = array( 
        "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",  
        "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v",  
        "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G",  
        "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R",  
        "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2",  
        "3", "4", "5", "6", "7", "8", "9" 
    ); 
    $charsLen = count($chars) - 1; 
    shuffle($chars);   
    $output = ""; 
    for ($i=0; $i<$len; $i++) 
    { 
        $output .= $chars[mt_rand(0, $charsLen)]; 
    }  
    return $output;  
} 
echo GetRandStr(4);

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

第一种方法:用php的strpos() 函数判断字符串中是否包含某字符串的方法 if(strpos(www.genban.org,genban) !== false){ echo 包含genban; }else{ echo 不包含genban; } 第二种 使用了explode 用explode进行判断PHP判断字符串的包含代码如下: ?php $name = 00
随机生成难点是在于如何避免碰撞,有人说用md5,GUID这些机制啊,当然可以,但是做为账号,看着有乱,而且生成位数也过长。 本方法只需要解决1秒内的并发碰撞就可以,因为固定头部采用的是unixtime时间,精确到秒,超过1秒,这个头部的时间肯定变化了。同时
实例代码如下: function make_coupon_card() { $code = ABCDEFGHIJKLMNOPQRSTUVWXYZ; $rand = $code[rand(0,25)] .strtoupper(dechex(date(m))) .date(d).substr(time(),-5) .substr(microtime(),2,5) .sprintf(%02d,rand(0,99)); for( $a = md5( $rand, tr
1、原生js写法 function () { document.getElementById(bankCard).onkeyup = function (event) { var v = this.value; if(/\S{5}/.test(v)){ this.value = v.replace(/\s/g, ).replace(/(\d{4})(?=\d)/g, $1 ); } };}(); 2、jQuery写法 !DOCTYPE htmlhtml la
?php//php中生成json信息//json_encode(数组/对象)$color = array(red,blue,green); //【索引数组】echo json_encode($color),br /; //[red,blue,green]$animal = array(east=tiger,north=wolf,south=monkey); //【关联数组】echo json_encode($animal),br /
使用时间戳作为原始字符串,再随机生成五个字符随机插入任意位置,生成新的字符串,保证不重复 function rand($len) { $chars=ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz; $string=time(); for(;$len=1;$len--) { $position=rand()%st