Node::current(), 'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : request()->ip(), 'action' => $action, 'content' => $content, 'username' => PHP_SAPI === 'cli' ? 'cli' : session('user.username'), ]; return Db::name('SystemLog')->insert($data) !== false; } /** * 清理系统日志数据 * @return boolean * @throws \think\Exception * @throws \think\exception\PDOException */ public static function clear() { return Db::name('SystemLog')->where('1=1')->delete() !== false; } }