生成随机字符串,可以自己扩展
Libérer: 2016-07-25 08:47:12
original
922 Les gens l'ont consulté
生成随机字符串,可以自己扩展 $type可以为:upper(只生成大写字母),lower(只生成小写字母),number(只生成数字) $len为长度,定义字符串长度
- /***************************
- * 生成随机字符串,可以自己扩展
- * $type可以为:upper(只生成大写字母),lower(只生成小写字母),number(只生成数字)
- * $len为长度,定义字符串长度
- ****************************/
- function _random($type,$len)
- {
- $new = '';
- $string = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; //随机数池子
- if($type=='upper')
- {
- for($i = 0;$i {
- $new .= $string[mt_rand(36,61)];
- }
- return $new;
- }
- if($type == 'lower')
- {
- for($i = 0;$i {
- $new .= $string[mt_rand(10,35)];
- }
- return $new;
- }
- if($type == 'number')
- {
- for($i = 0;$i {
- $new .= $string[mt_rand(0,9)];
- }
- return $new;
- }
- }
复制代码
|
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31