首頁 >php教程 >PHP源码 >PHP生成指定随机字符串的方法

PHP生成指定随机字符串的方法

PHP中文网
PHP中文网原創
2016-05-26 08:19:481033瀏覽

php代码

/**
 * @param string $type
 * @param $length
 * @return string
 */
function randomString($type="number,upper,lower",$length){
    $valid_type = array('number','upper','lower');
    $case = explode(",",$type);

    $count = count($case);
    //根据交集判断参数是否合法
    if($count !== count(array_intersect($case,$valid_type))){
        return false;
    }
    $lower = "abcdefghijklmnopqrstuvwxyz";
    $upper = strtoupper($lower);
    $number = "0123456789";
    $str_list = "";
    for($i=0;$i<$count;++$i){
        $str_list .= $$case[$i];
    }
    return substr(str_shuffle($str_list),0,$length);
}
echo randomString("number,upper,lower",12);
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn