This commit is contained in:
cano
2024-03-08 00:58:23 +08:00
parent bebbee4184
commit b14c000bc3
25 changed files with 1681 additions and 8 deletions

12
app/Tools/Times.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Tools;
class Times
{
//获取当前时间
public static function getNowDateTime($format = 'Y-m-d H:i:s'): string
{
return date($format);
}
}