@@ -35,7 +35,7 @@ |
||
35 | 35 | public static function randomString($length = 11) |
36 | 36 | { |
37 | 37 | $str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890'; |
38 | - $randStr = str_shuffle(str_repeat($str, $length));//打乱字符串 |
|
38 | + $randStr = str_shuffle(str_repeat($str, $length)); //打乱字符串 |
|
39 | 39 | return substr($randStr, 0, $length); |
40 | 40 | } |
41 | 41 |