心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Basic.php 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年11月4日
  7. * 系统基础类
  8. */
  9. namespace core\basic;
  10. class Basic
  11. {
  12. protected static $models = array();
  13. // 实现类文件自动加载
  14. public static function autoLoad($className)
  15. {
  16. //oss类跳过
  17. if( strstr($className,'OSS')){
  18. return;
  19. }
  20. if (substr($className, 0, 4) == 'core') { // 框架类文件命名空间转换
  21. $class_file = CORE_PATH . '/' . str_replace('\\', '/', substr($className, 5)) . '.php';
  22. } elseif (substr($className, 0, 3) == 'app') { // 应用类文件命名空间转换
  23. $class_file = APP_PATH . '/' . str_replace('\\', '/', substr($className, 4)) . '.php';
  24. } elseif (strpos($className, '\\')) { // 如果带有命名空间,使用全路径载入
  25. $class_file = ROOT_PATH . '/' . str_replace('\\', '/', $className) . '.php';
  26. } else { // 默认载入内核基础目录下文件
  27. $class_file = CORE_PATH . '/basic/' . $className . '.php';
  28. }
  29. if (! file_exists($class_file)) {
  30. error('自动加载类文件时发生错误,类名【' . $className . '】,文件:【' . $class_file . '】');
  31. }
  32. require $class_file;
  33. }
  34. // 自定义错误函数
  35. public static function errorHandler($errno, $errstr, $errfile, $errline)
  36. {
  37. if (! (error_reporting() & $errno)) {
  38. // 如果这个错误类型没有包含在error_reporting里,如加了@的错误则不报告
  39. return;
  40. }
  41. switch ($errno) {
  42. case E_ERROR:
  43. $err_level = 'ERROR';
  44. break;
  45. case E_WARNING:
  46. $err_level = 'WARNING';
  47. break;
  48. case E_PARSE:
  49. $err_level = 'PARSE';
  50. break;
  51. case E_NOTICE:
  52. $err_level = 'NOTICE';
  53. break;
  54. case E_RECOVERABLE_ERROR:
  55. case E_CORE_ERROR:
  56. case E_COMPILE_ERROR:
  57. case E_USER_ERROR:
  58. $err_level = 'FATAL ERROR';
  59. break;
  60. default:
  61. $err_level = 'UNKNOW';
  62. break;
  63. }
  64. $info = "<h3>$err_level:</h3>\n";
  65. $info .= "<p><b>Code:</b> $errno;</p>\n";
  66. $info .= "<p><b>Desc:</b> $errstr;</p>\n";
  67. $info .= "<p><b>File:</b> $errfile;</p>\n";
  68. $info .= "<p><b>Line:</b> $errline;</p>\n";
  69. if ($err_level == 'WARNING' || $err_level == 'NOTICE') {
  70. echo $info;
  71. } else {
  72. error($info);
  73. }
  74. }
  75. // 异常捕获
  76. public static function exceptionHandler($exception)
  77. {
  78. error("程序运行异常: " . $exception->getMessage() . ",位置:" . $exception->getFile() . ',第' . $exception->getLine() . '行。');
  79. }
  80. // 致命错误捕获
  81. public static function shutdownFunction()
  82. {
  83. $error = error_get_last();
  84. define('E_FATAL', E_ERROR | E_RECOVERABLE_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR);
  85. if ($error && ($error["type"] === ($error["type"] & E_FATAL))) {
  86. $errno = $error["type"];
  87. $errstr = $error["message"];
  88. $errfile = $error["file"];
  89. $errline = $error["line"];
  90. self::errorHandler($errno, $errstr, $errfile, $errline);
  91. }
  92. }
  93. // 会话处理程序设置
  94. public static function setSessionHandler()
  95. {
  96. if (ini_get('session.auto_start')) {
  97. return;
  98. }
  99. // 配置会话安全参数
  100. session_name('PbootSystem');
  101. ini_set("session.use_trans_sid", 0);
  102. ini_set("session.use_cookies", 1);
  103. ini_set("session.use_only_cookies", 1);
  104. session_set_cookie_params(0, SITE_DIR . '/', null, null, false);
  105. switch (Config::get('session.handler')) {
  106. case 'memcache':
  107. if (! extension_loaded('memcache'))
  108. error('PHP运行环境未安装memcache.dll扩展!');
  109. ini_set("session.save_handler", "memcache");
  110. ini_set("session.save_path", Config::get('seesion.path'));
  111. break;
  112. default:
  113. if (Config::get('session_in_sitepath')) {
  114. $save_path = RUN_PATH . '/session/';
  115. if (! check_dir($save_path, true))
  116. error('设置的会话目录创建失败!' . $save_path);
  117. ini_set("session.save_handler", "files");
  118. $depth = 1;
  119. ini_set("session.save_path", $depth . ';' . $save_path);
  120. if (! is_dir($save_path . '/0/0') || ! is_dir($save_path . '/v/v')) {
  121. create_session_dir($save_path, $depth);
  122. }
  123. }
  124. break;
  125. }
  126. }
  127. // 实例化模型
  128. public static function createModel($name = null, $new = false)
  129. {
  130. // 自动同名模型控制器
  131. if (! $name)
  132. $name = C;
  133. // 获取类名
  134. if (strpos($name, '.') !== false) {
  135. $path = explode('.', $name);
  136. $class_name = '\\app\\' . $path[0] . '\\model';
  137. $len = count($path);
  138. for ($i = 1; $i < $len - 1; $i ++) {
  139. $class_name .= '\\' . $path[$i];
  140. }
  141. $class_name .= '\\' . ucfirst($path[$i]) . 'Model';
  142. } else {
  143. $class_name = '\\app\\' . M . '\\model\\' . ucfirst($name) . 'Model';
  144. }
  145. // 根据需要实例化
  146. $key = md5($class_name);
  147. if (! isset(self::$models[$key]) || $new) {
  148. self::$models[$key] = new $class_name();
  149. }
  150. return self::$models[$key];
  151. }
  152. // 创建数据接口
  153. public static function createApi($args = null)
  154. {
  155. // 直接调用方式
  156. if (! is_array($args)) {
  157. $args = func_get_args();
  158. }
  159. // 分离参数
  160. $name = $args[0];
  161. unset($args[0]);
  162. $param = $args;
  163. // 如果只是传递了方法,则自动完善模块及模型控制器
  164. if (strpos($name, '.') === false) {
  165. $name = M . '.' . C . '.' . $name;
  166. }
  167. $path = explode('.', $name); // 第一个为模块 $path[0],倒数第二个为模型$path[$i],倒数第一个为方法$path[$i+1]
  168. $class_name = '\\app\\' . $path[0] . '\\model';
  169. $len = count($path);
  170. for ($i = 1; $i < $len - 2; $i ++) {
  171. $class_name .= '\\' . $path[$i];
  172. }
  173. $class_name .= '\\' . ucfirst($path[$i]) . 'Model';
  174. $key = md5($class_name);
  175. if (isset(self::$models[$key])) {
  176. $model = self::$models[$key];
  177. } else {
  178. $model = new $class_name();
  179. self::$models[$key] = $model;
  180. }
  181. // 调取接口方法
  182. if (is_array($param)) {
  183. $rs = call_user_func_array(array(
  184. $model,
  185. $path[$i + 1]
  186. ), $param);
  187. }
  188. // 返回结果,如果不是json数据,则转换
  189. if (! ! $return = json_decode($rs)) {
  190. return $rs;
  191. } else {
  192. return json_encode($rs);
  193. }
  194. }
  195. }