index.inc.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <?php
  2. //基本参数设置
  3. require_once(APP.'config.inc.php');
  4. if(defined("TIMEZONE") && function_exists("date_default_timezone_set"))
  5. {
  6. date_default_timezone_set(TIMEZONE);
  7. }
  8. header("Content-type: text/html; charset=utf-8");
  9. //取得Get或Post参数信息
  10. //配置返回资料是否自动加入反斜线当溢出字符,设置为0关闭该功能
  11. @set_magic_quotes_runtime(0);
  12. $time = explode(" ",microtime());
  13. $time_start = $time[0] + $time[1];
  14. define("SYS_TIME_START",$time_start);
  15. unset($time_start,$time);
  16. //读取内存
  17. if(function_exists("memory_get_usage") && !defined("SYS_MEMORY_START"))
  18. {
  19. define("SYS_MEMORY_START",memory_get_usage());
  20. }
  21. if(defined("SYS_GZIP") && SYS_GZIP == true && function_exists("ob_gzhandler"))
  22. {
  23. ob_start("ob_gzhandler");
  24. }
  25. else
  26. {
  27. ob_start();
  28. }
  29. //域名授权在此修改 -开始
  30. //域名授权在此修改 -结束
  31. //判断是否有启用调试功能
  32. if(defined("SYS_IF_DEBUG") && SYS_IF_DEBUG == true)
  33. {
  34. //error_reporting(E_ALL);
  35. error_reporting(7);
  36. }
  37. else
  38. {
  39. error_reporting(0);
  40. }
  41. require_once(LIBS.'control.sys.php');
  42. //加载辅助函数,这里的辅助函数均不涉及到APP层上的信息
  43. //即这里的辅助函数均可以单独运行
  44. require_once(LIBS.'helper.sys.php');
  45. //[格式化Get,Post及$_FILES参数]
  46. @extract(sys_rgpc_safe($_POST));
  47. @extract(sys_rgpc_safe($_GET));
  48. if(!get_magic_quotes_gpc()) $_FILES = sys_rgpc_safe($_FILES);
  49. //执行GET参数,以获取有效的控制文件
  50. //如果没有检查到C层
  51. $p_c = sys_get_cf($config['control_trigger']);
  52. if(!$p_c) $p_c = "index";
  53. $p_f = sys_get_cf($config['function_trigger']);
  54. if(!$p_f) $p_f = "index";
  55. $p_d = sys_get_d($config['dir_trigger']);
  56. if($p_d)
  57. {
  58. if(substr($p_d,-1) != '/')
  59. {
  60. $p_d .= '/';
  61. }
  62. $control_file = APP.'control/'.$p_d.$p_c.'.php';
  63. }
  64. else
  65. {
  66. $control_file = APP.'control/'.$p_c.'.php';
  67. }
  68. if(!file_exists($control_file))
  69. {
  70. exit('error: file '.$p_c.'.php no exists!');
  71. }
  72. //判断文件是否存在
  73. $control_file = APP.'control/'.$p_d.$p_c.'.php';
  74. require_once($control_file);
  75. $control_name = strtolower($p_c)."_c";
  76. $APP = new $control_name();
  77. $APP->control_name = $p_c;//指定模块
  78. $system_time = time() + (defined("TIMETUNING") ? TIMETUNING : 0);
  79. $APP->system_time = $system_time;//系统时间
  80. //执行session信息
  81. $APP->session_lib->start($APP->db,$APP->db->prefix);
  82. //运行以下参数,以实现在函数中使用Control操作
  83. function sys_init()
  84. {
  85. global $APP;
  86. return $APP;
  87. }
  88. //
  89. function sys_app($var)
  90. {
  91. $app = sys_init();
  92. return $app->$var;
  93. }
  94. //将数据存到URL类中
  95. $APP->set_config($config);
  96. $APP->url = $APP->url(array("c"=>$p_c,"f"=>$p_f,"d"=>$p_d));
  97. $APP->tpl->assign("sys_app",$APP);
  98. //加载公共函数
  99. $dirlist = $APP->file_lib->ls(APP);
  100. foreach($dirlist AS $key=>$value)
  101. {
  102. $basename = strtolower(basename($value));
  103. if(substr($basename,-8) == "func.php")
  104. {
  105. include_once($value);
  106. }
  107. }
  108. unset($dirlist);
  109. //判断自动载入的model配置信息
  110. if(file_exists(APP."model.config.php"))
  111. {
  112. include(APP."model.config.php");
  113. if($_model_config["autoload"] && is_array($_model_config["autoload"]) && count($_model_config["autoload"])>0)
  114. {
  115. foreach($_model_config["autoload"] AS $key=>$value)
  116. {
  117. $APP->load_model($value);
  118. }
  119. }
  120. if($_model_config["autoload_function"] && is_array($_model_config["autoload_function"]) && count($_model_config["autoload_function"])>0)
  121. {
  122. foreach($_model_config["autoload_function"] AS $key=>$value)
  123. {
  124. if(function_exists($value))
  125. {
  126. $value();
  127. }
  128. }
  129. }
  130. }
  131. //判断是否有新的语言模块,有就重写
  132. if($APP->langconfig_m)
  133. {
  134. if($_GET["langid"])
  135. {
  136. $_SESSION["sys_lang_id"] = $_GET["langid"];
  137. }
  138. $_tmp_langid = $_SESSION["sys_lang_id"] ? $_SESSION["sys_lang_id"] : "";
  139. $_tmp_rs = $APP->langconfig_m->get_one($_tmp_langid);
  140. if($_tmp_rs)
  141. {
  142. $_SESSION["sys_lang_id"] = $_tmp_rs["langid"];
  143. }
  144. else
  145. {
  146. $_SESSION["sys_lang_id"] = defined("SYS_LANG") ? SYS_LANG : "zh";
  147. }
  148. if(file_exists(ROOT_DATA."lang_".$_SESSION["sys_lang_id"].".php"))
  149. {
  150. include_once(ROOT_DATA."lang_".$_SESSION["sys_lang_id"].".php");
  151. }
  152. }
  153. else
  154. {
  155. $_SESSION["sys_lang_id"] = defined("SYS_LANG") ? SYS_LANG : "zh";
  156. $_lang = array();
  157. }
  158. //指定语言包
  159. $_lang = $APP->lang($_SESSION["sys_lang_id"],$_lang);
  160. $APP->langid = $_SESSION["sys_lang_id"];
  161. //读取缓存信息
  162. $APP->cache_lib->load_setting();
  163. $APP->cache_lib->langid($_SESSION["sys_lang_id"]);
  164. $APP->cache_lib->cache_connect_server();
  165. // 判断是否有tplconfig_m模块应用,有就重写新的模块
  166. if($APP->tplconfig_m)
  167. {
  168. $_tmp_rs = $APP->tplconfig_m->get_one(0,$_SESSION["sys_lang_id"]);
  169. if($_tmp_rs && $_tmp_rs["folder"] != "default")
  170. {
  171. $APP->tpl->tplid = $_tmp_rs["id"];
  172. $APP->tpl->tpldir = "tpl/".$_tmp_rs["folder"];
  173. $APP->tpl->cache = ROOT."data/tpl_c";
  174. $APP->tpl->ext = $_tmp_rs["ext"] ? $_tmp_rs["ext"] : "html";
  175. $APP->tpl->autoimg = $_tmp_rs["autoimg"];
  176. }
  177. unset($_tmp_rs);
  178. }
  179. //判断是否有使用配置信息
  180. if($APP->setconfig_m && $_SESSION["sys_lang_id"])
  181. {
  182. $_tmp_rs = $APP->setconfig_m->get_list($_SESSION["sys_lang_id"]);
  183. $APP->sys_config($_tmp_rs);
  184. $APP->tpl->assign("_sys",$_tmp_rs);
  185. //判断网站是否有关闭,如有关闭,则跳转到关闭页面
  186. if(!$_tmp_rs["site_status"])
  187. {
  188. $APP->tpl->display("close.".$APP->tpl->ext);
  189. exit();
  190. }
  191. unset($_tmp_rs);
  192. }
  193. //模块ID与标识串的互换
  194. if($APP->module_m)
  195. {
  196. $_tmp_rs = $APP->module_m->get_id_code_list();
  197. if($_tmp_rs)
  198. {
  199. $APP->module_codelist = $_tmp_rs["code"];
  200. $APP->module_idlist = $_tmp_rs["id"];
  201. unset($_tmp_rs);
  202. }
  203. }
  204. //分类ID与标识符的互换
  205. if($APP->cate_m)
  206. {
  207. $_tmp_rs = $APP->cate_m->get_id_code_list();
  208. if($_tmp_rs)
  209. {
  210. $APP->cate_codelist = $_tmp_rs["code"];
  211. $APP->cate_idlist = $_tmp_rs["id"];
  212. unset($_tmp_rs);
  213. }
  214. }
  215. //加载核心参数
  216. include_once(LIBS."phpok.sys.php");
  217. $function_name = strtolower($p_f)."_f";
  218. unset($p_c,$p_f,$p_d,$control_file);
  219. $APP->$function_name();
  220. //更新缓存(这里主要是用于更新文本缓存)
  221. $APP->cache_lib->cache_write_txt();
  222. ?>