Discuz!NT之配置文件类[discuz.config]
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-04-11
; /**//// <summary> 43 /// 配置文件所在路径 44 /// </summary> 45 public static string filename = null; 46 47 48 /**//// <summary> 49 /// 获取配置文件所在路径 50 /// </summary> 51 public new static string ConfigFilePath 52 { 53 get 54 { 55 if (filename == null) 56 { 57 filename = Utils.GetMapPath(BaseConfigs.GetForumPath + "config/general.config"); 58 } 59 60 return filename; 61 } 62 63 } 64 65 /**//// <summary> 66 /// 返回配置类实例 67 /// </summary> 68 /// <returns></returns> 69 public static GeneralConfigInfo LoadConfig() 70 { 71 72 try 73 { 74 ConfigInfo = DefaultConfigFileManager.LoadConfig(ref m_fileoldchange, ConfigFilePath, ConfigInfo, true); 75 } 76 catch 77 { 78 ReviseConfig(); 79 ConfigInfo = DefaultConfigFileManager.LoadConfig(ref m_fileoldchange, ConfigFilePath, ConfigInfo, true); 80 } 81 return ConfigInfo as GeneralConfigInfo; 82 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于Discuz!NT之配置文件类[discuz.config]的所有评论