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