码迷,mamicode.com
首页 > Web开发 > 详细

PHP生成随机字符串

时间:2018-12-30 21:59:55      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:bst   open   rand   int   UNC   length   turn   cti   openssl   


PHP生成随机字符串


function RandomToken($length = 32){
    if(!isset($length) || intval($length) <= 8 ){
        $length = 32;
    }
    if (function_exists(‘openssl_random_pseudo_bytes‘)) {
        return bin2hex(openssl_random_pseudo_bytes($length));
    }

    if (function_exists(‘random_bytes‘)) {
        return bin2hex(random_bytes($length));
    }
    if (function_exists(‘mcrypt_create_iv‘)) {
        return bin2hex(mcrypt_create_iv($length, MCRYPT_DEV_URANDOM));
    }

    $rand = ‘‘;
    for($i = 0, $num = ceil($length/32) * 2;$i<=$num;$i++){
        $rand .= md5(uniqid());
    }
    return substr($rand,0,$length*2);
}

PHP生成随机字符串

标签:bst   open   rand   int   UNC   length   turn   cti   openssl   

原文地址:https://www.cnblogs.com/lovellll/p/10200543.html

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