20 lines
395 B
PHP
20 lines
395 B
PHP
<?php
|
|
|
|
namespace app\gateway\controller\api;
|
|
|
|
use app\gateway\controller\api\Coreks;
|
|
use app\gateway\service\RedisService;
|
|
use think\exception\HttpResponseException;
|
|
|
|
class Test1 extends Coreks
|
|
{
|
|
# 测试 获取加密信息 上线注释
|
|
public function diyTest(): mixed
|
|
{
|
|
|
|
$day = date('Y-m-d', strtotime('-1 day'));
|
|
var_dump($day);die;
|
|
// return true;
|
|
}
|
|
|
|
} |