deal() === false) { return false; } $this->recordLog($startAt); return true; } catch (\Throwable $e) { $this->dealWithException($e); echo sprintf('[%s]: ', date('Y-m-d H:i:s')) . 'File:' . $e->getFile() . ', Lines: '. $e->getLine() .'行,Exception Message: ' . $e->getMessage() . PHP_EOL; // 输出堆栈信息 echo sprintf('[%s]: ', date('Y-m-d H:i:s')) . $e->getTraceAsString() . PHP_EOL; // 日志记录 $this->recordLog($startAt, 'File:' . $e->getFile() . ', Lines: '. $e->getLine() .'行,Exception Message: ' . $e->getMessage()); $this->exceptionHappenTimes += 1; } } /** * 退出 * * @time 2020年07月29日 * @return bool */ public function shouldExit() { // var_dump($this->exceptionHappenTimes); return $this->exceptionHappenTimes > $this->exitTimes; } /** * 设置 crontab * * @time 2020年09月15日 * @param array $crontab * @return $this */ public function setCrontab(array $crontab) { $this->crontab = $crontab; return $this; } protected function recordLog($startAt, $message = '') { $endAt = round(microtime(true) * 1000); CrontabLog::insert([ 'crontab_id' => $this->crontab['id'], 'used_time' => $endAt - $startAt, 'error_message' => $message, 'status' => $message ? CrontabLog::FAILED : CrontabLog::SUCCESS, 'created_at' => time(), 'updated_at' => time(), ]); } }