From a98895c01a12d68b09b88a65d830f0f782be4a7e Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Thu, 30 May 2024 16:29:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AE=A2=E5=8D=95=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E5=92=8C=E8=AE=A2=E5=8D=95ID=E7=94=9F=E6=88=90?= =?UTF-8?q?=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/logic/order/OrderLogic.php | 2 +- app/functions.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php index 77bffd3..6966593 100644 --- a/app/api/logic/order/OrderLogic.php +++ b/app/api/logic/order/OrderLogic.php @@ -56,7 +56,7 @@ class OrderLogic extends BaseLogic } $order = [ 'time' => time(), - 'number' => static::getNewOrderId('PF'), + 'number' => getNewOrderId('PF'), 'total' => self::$total, 'pay_type' => $params['pay_type'] ?? 0, 'cart_id' => implode(',', $cartId), diff --git a/app/functions.php b/app/functions.php index 3eaae0f..8d171b0 100644 --- a/app/functions.php +++ b/app/functions.php @@ -324,7 +324,7 @@ if (!function_exists('getNewOrderId')) { { list($msec, $sec) = explode(' ', microtime()); $msectime = number_format((floatval($msec) + floatval($sec)) * 1000, 0, '', ''); - $orderId = $type . $msectime . mt_rand(10000, max(intval($msec * 10000) + 10000, 98369)); + $orderId = $type . $msectime . mt_rand(100, max(intval($msec * 10) + 100, 983)); return $orderId; } }