昨天开发一个产品要求由网站总后台生成一个注册码/序列号,然后我们以573-225-374-118这种格式生成,并且不重复在数据库是唯一的,下面我把我找到的与自己写的都记录一下。
原理,就是生成mt_rand随机种子来生成,然后利用相关函数进行读取操作.
例1代码如下:
-
-
-
- function snMaker($pre = '') {
- $date = date('Ymd');
- $rand = rand(1000000,9999999);
- $time = mb_substr(time(), 5, 5, 'utf-8');
- $serialNumber = $pre.$date.$time.$rand;
-
- return $serialNumber;
- }
- echo snMaker();
-
-
-
-
-
-
-
- function hideString($str = 'hello', $to = '*', $start = 1, $end = 0) {
- $lenth = strlen($str) - $start - $end;
- $lenth = ($lenth < 0) ? 0 : $lenth;
- $to = str_repeat($to, $lenth);
- $str = substr_replace($str, $to, $start, $lenth);
- return $str;
- }
- echo hideString();
例2,生成注册码/序列号,以下为引用的内容,代码如下:
- <?php
-
- $key_sum = 1500;
- $key_total = 1000;
- $limiter = "-";
- $save_file = "./cd_key.txt";
- $num_file = "./number.txt";
- $file = file($num_file);
- $start_num = 0;
- $end_num = count($file);
-
- $cdkey = array();
- for ($i=0; $i<$key_sum; $i++)
- {
- $key_str = $file[rand_num($start_num, $end_num)].$limiter.
- $file[rand_num($start_num, $end_num)].$limiter.
- $file[rand_num($start_num, $end_num)].$limiter.
- $file[rand_num($start_num, $end_num)];
- $cdkey[] = str_replace("rn", "", $key_str);
- }
-
- $cdkey = array_unique($cdkey);
- $key_result = array();
- for ($i=0; $i<$key_total; $i++)
- {
- $key_result[] = $cdkey[$i];
- }
-
- $fp = fopen($save_file, "w+") or die("Open $save_file failed");
- fwrite($fp, implode("rn", $key_result)) or die("Write $save_file failed");
- unset($cdkey);
- unset($$key_result);
- fclose($fp);
- echo "Create $key_total key succeed!";
-
- function rand_num($start, $end)
- {
- return mt_rand($start, $end);
- }
- ?>
执行上面的程序就会生成cd_key.txt文件,里面包含了类似下面的验证码,以下为引用的内容:
573-225-374-118,691-553-280-280,969-594-607-211,251-575-776-563,280-289-739-533...
这样,就完整的达到了我们的目的,你也可以把以上随机串保存到数据库里,方便调用,灵活设置以上变量,你能够生成16位、20位的验证码,如果你有兴趣,也可以写类似 XDF8F-ADE89-D0J5C-4RTFG之类的验证码 |