首页 > php教程 > php手册 > 正文

PHP生成随机数,字符串

WBOY
发布: 2016-06-13 10:50:11
原创
957 人浏览过

function rand_string($len = 6, $type = '', $addChars = '') { 
    $str = ''; 
    switch ($type) { 
        case 0 : 
            $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' . $addChars; 
            break; 
        case 1 : 
            $chars = str_repeat ( '0123456789', 3 ); 
            break; 
        case 2 : 
            $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' . $addChars; 
            break; 
        case 3 : 
            $chars = 'abcdefghijklmnopqrstuvwxyz' . $addChars; 
            break; 
        default : 
            // 默认去掉了容易混淆的字符oOLl和数字01,要添加请使用addChars参数 
            $chars = 'ABCDEFGHIJKMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz23456789' . $addChars; 
            break; 
    } 
    if ($len > 10) { //位数过长重复字符串一定次数 
        $chars = $type == 1 ? str_repeat ( $chars, $len ) : str_repeat ( $chars, 5 ); 
    } 
    if ($type != 4) { 
        $chars = str_shuffle ( $chars ); 
        $str = substr ( $chars, 0, $len ); 
    } else { 
        // 中文随机字 
        for($i = 0; $i             $str .= msubstr ( $chars, floor ( mt_rand ( 0, mb_strlen ( $chars, 'utf-8' ) - 1 ) ), 1 ); 
        } 
    } 
    return $str; 

 

 

摘自 lpdx111的专栏

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板