日期:2014-05-17  浏览次数:20412 次

如何创建这种唯一的KEY
本帖最后由 satans18 于 2013-04-02 19:33:14 编辑
http://jsfiddle.net/monteslu/vcKdF/

每新增一条记录,就会创建一个类似“vcKdF”这样的KEY
求这个KEY的算法

谢谢!

------解决方案--------------------
52 取 5 的组合(2598960 种,够用了),如果重复了就换一个
------解决方案--------------------

<?php
function getRandStr($len){ 
        $chars = array("0", "1", "2","3", "4", "5", "6", "7", "8", "9"); //换成a-z,A-Z 52种
        $charsLen = count($chars) - 1; 
        shuffle($chars);
        $output = "";
        for ($i=0; $i<$len; $i++){ 
            $output .= $chars[mt_rand(0, $charsLen)]; 
        }  
        return $output;  
    }

?>