26 lines
361 B
PHP
26 lines
361 B
PHP
<?php
|
||
/*
|
||
* description:
|
||
* author:wh
|
||
* email:
|
||
* createTime:{2025/3/24} {17:23}
|
||
*/
|
||
|
||
namespace app\index\controller;
|
||
|
||
|
||
use think\Controller;
|
||
use wanghua\general_utility_tools_php\Mmodel;
|
||
|
||
//定时任务
|
||
class Tasktimer extends Controller
|
||
{
|
||
|
||
//按分钟执行
|
||
function runMinutes(){
|
||
|
||
Mmodel::catchJson(function (){
|
||
|
||
});
|
||
}
|
||
} |