当前位置 : 主页 > 网络编程 > PHP >

php随机数字.txt

来源:互联网 收集:自由互联 发布时间:2021-06-28
随机数字.txt function getRand($length = 16){ $a = range(0,9); for($i=0; $i$length; $i++){ $b[] = array_rand($a); } return join("", $b); }//该片段来自于http://www.codesnippet.cn/detail/3006201512971.html
随机数字.txt
function getRand($length = 16){
        $a = range(0,9);
        for($i=0; $i<$length; $i++){
            $b[] = array_rand($a);
        } 
        return join("", $b);
    }
//该片段来自于http://www.codesnippet.cn/detail/3006201512971.html
网友评论