ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
` ~~~ /** * 设备或配置系统参数 * @param string $name 参数名称 * @return string|boolean * @throws \think\Exception * @throws \think\exception\PDOException */ function GetConfig($name) { $key = md5(config('database.hostname').'#'.config('database.database').$name); if (Cache::has($key)) { $data = Cache::get($key); } else { $data = Db::name('setting')->where("key", "=", "{$name}")->value("value"); Cache::set($key, $data, 180); } return $data; } ~~~ `