码迷,mamicode.com
首页 > 其他好文 > 详细

生成固定长随机码

时间:2018-02-04 16:44:34      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:sub   blog   rand   gpo   hex   bcd   upper   time   def   

function R() {    
    $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, true ),    
        $s = ‘0123456789ABCDEFGHIJKLMNOPQRSTUV‘,    
        $d = ‘‘,    
        $f = 0;    
        $f < 8;        
        $g = ord( $a[ $f ] ),    
        $d .= $s[ ( $g ^ ord( $a[ $f + 8 ] ) ) - $g & 0x1F ],    
        $f++    
    );    
    return $d;    
}

 

生成固定长随机码

标签:sub   blog   rand   gpo   hex   bcd   upper   time   def   

原文地址:https://www.cnblogs.com/wwlww/p/8413330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!