Files
huangjingfen/pro_v3.5.1/crmeb/utils/Cron.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

129 lines
2.5 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\utils;
use think\swoole\Manager;
use Swoole\Timer;
use think\facade\Log;
/**
* Cron定时执行
* Class Cron
* @package crmeb\utils
*/
class Cron
{
/**
* @var Manager
*/
protected $manager;
/**
* @var int
*/
protected $workerId = 0;
/**
* @var
*/
protected $timer;
/**
* @var bool
*/
protected $debug = false;
/**
* Cron constructor.
* @param Manager $manager
*/
public function __construct(Manager $manager)
{
$this->manager = $manager;
$this->debug = env('APP_DEBUG', false);
$this->workerId = $this->manager->getWorkerId();
}
/**
* @param int $workerId
* @return Cron
*/
public function setWorkerId(int $workerId)
{
$this->workerId = $workerId;
return $this;
}
/**
* 沙盒运行
* @param callable $callable
*/
protected function runInSandbox(callable $callable)
{
$callable();
}
/**
* 添加启动定时任务
* @param int $ms
* @param callable $callable
* @return mixed
*/
public function tick(int $ms, callable $callable)
{
if ($this->workerId === $this->manager->getWorkerId()) {
return Timer::tick($ms, fn() => $this->runInSandbox($callable));
} else {
return null;
}
}
/**
* 每天的某时某分运行一次
* minuteTick('12:15',fun()) 例如: 12:15 会在当天的中午12点15分钟运行一次
* @param string $time
* @param callable $callable
* @return mixed|null
*/
public function minuteTick(string $time, callable $callable)
{
return $this->tick(1000 * 60, function () use ($callable, $time) {
$nowTime = date('H:i');
if ($nowTime === $time) {
$callable();
}
});
}
/**
* 一次执行
* @param int $ms
* @param callable $callable
*/
public function after(int $ms, callable $callable)
{
Timer::after($ms, fn() => $this->runInSandbox($callable));
}
/**
* 清除定时任务
* @param int $timer
*/
public function clear(int $timer)
{
Timer::clear($timer);
}
/**
* 清除所有定时任务
*/
public function clearAll()
{
Timer::clearAll();
}
}