From 48d133f5d6843e5825856ed065edf8b952db67f3 Mon Sep 17 00:00:00 2001 From: wanghongjun <1445693971@qq,com> Date: Wed, 11 Oct 2023 14:40:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E9=9A=8F=E6=9C=BA=E5=AD=97?= =?UTF-8?q?=E7=AC=A6Z=E3=80=81O=E3=80=81l?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common.php b/app/common.php index 3a0efff..b4e0dce 100644 --- a/app/common.php +++ b/app/common.php @@ -62,7 +62,7 @@ function checkToken($token): array */ function generate_random_str(int $length = 8): string { - $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; + $characters = '0123456789abcdefghijkmnopqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXY'; $str = ''; $maxIndex = strlen($characters) - 1;