Home  >  Article  >  Backend Development  >  怎么创建这种唯一的KEY

怎么创建这种唯一的KEY

WBOY
WBOYOriginal
2016-06-13 11:19:39864browse

如何创建这种唯一的KEY

本帖最后由 satans18 于 2013-04-02 19:33:14 编辑 http://jsfiddle.net/monteslu/vcKdF/

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

谢谢!

------解决方案--------------------
52 取 5 的组合(2598960 种,够用了),如果重复了就换一个
------解决方案--------------------
<br /><?php<br />function getRandStr($len){ <br />        $chars = array("0", "1", "2","3", "4", "5", "6", "7", "8", "9"); //换成a-z,A-Z 52种<br />        $charsLen = count($chars) - 1; <br />        shuffle($chars);<br />        $output = "";<br />        for ($i=0; $i<$len; $i++){ <br />            $output .= $chars[mt_rand(0, $charsLen)]; <br />        }  <br />        return $output;  <br />    }<br /><br />?><br />
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn