title = '系统参数配置'; $this->fetch(); } /** * 修改系统能数配置 * @auth true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function config() { $this->_applyFormToken(); if ($this->request->isGet()) { $this->title = '系统参数配置'; $this->fetch(); } foreach ($this->request->post() as $key => $value) { sysconf($key, $value); } $this->success('系统参数配置成功!'); } /** * 文件存储引擎 * @auth true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function storage() { $this->_applyFormToken(); if ($this->request->isGet()) { $this->type = input('type', 'local'); $this->fetch("storage-{$this->type}"); } $post = $this->request->post(); if (!empty($post['storage']['allow_exts'])) { $exts = array_unique(explode(',', strtolower($post['storage']['allow_exts']))); sort($exts); if (in_array('php', $exts)) $this->error('禁止上传可执行文件到本地服务器!'); $post['storage']['allow_exts'] = join(',', $exts); } foreach ($post as $key => $value) sysconf($key, $value); $this->success('文件存储配置成功!'); } }