ufutx.love.util/app/Services/UtilService.php

21 lines
346 B
PHP
Raw Normal View History

2025-08-12 14:46:31 +08:00
<?php
namespace App\Services;
class UtilService
{
/**
* 随机生成16位数作为本地服务器的支付订单ID
* @return string
*/
public function getTradeNO()
{
$dateline = time();
$mix_1 = rand(100, 999);
$mix_2 = rand(100, 999);
return $dateline . $mix_1 . $mix_2;
}
2026-04-27 11:15:42 +08:00
2025-08-12 14:46:31 +08:00
}