getAdminInfo()); return View::fetch(); } /** * 修改密码 */ public function modifypw() { if (request()->isPost()) { $new_pw = trim(input('post.new_pw')); $new_pw2 = trim(input('post.new_pw2')); $old_pw = trim(input('post.old_pw')); if ($new_pw !== $new_pw2) { $this->error(lang('index_modifypw_repeat_error')); } $admininfo = $this->getAdminInfo(); //查询管理员信息 $admin_model = model('admin'); $admininfo = $admin_model->getOneAdmin(array('admin_id'=>$admininfo['admin_id'])); if (!is_array($admininfo) || count($admininfo) <= 0) { $this->error(lang('index_modifypw_admin_error')); } //旧密码是否正确 if ($admininfo['admin_password'] != md5($old_pw)) { $this->error(lang('index_modifypw_oldpw_error')); } $new_pw = md5($new_pw); $result = $admin_model->editAdmin(array('admin_password' => $new_pw),$admininfo['admin_id']); if ($result) { session(null); echo ""; } else { $this->error(lang('index_modifypw_fail')); } } else { return View::fetch(); } } /** * 删除缓存 */ function clear() { $this->delCacheFile('admin/temp'); $this->delCacheFile('admin/cache'); $this->delCacheFile('home/temp'); $this->delCacheFile('home/cache'); $this->delCacheFile('api/temp'); $this->delCacheFile('api/cache'); Cache::clear(); ds_json_encode(10000, lang('ds_common_op_succ')); exit(); } /** * 删除缓存目录下的文件或子目录文件 * * @param string $dir 目录名或文件名 * @return boolean */ function delCacheFile($dir) { //防止删除cache以外的文件 if (strpos($dir, '..') !== false) return false; $path = root_path() . 'runtime/' . $dir; if (is_dir($path)) { $file_list = array(); read_file_list($path, $file_list); if (!empty($file_list)) { foreach ($file_list as $v) { if (basename($v) != 'index.html') @unlink($v); } } } else { if (basename($path) != 'index.html') @unlink($path); } return true; } }