Sin descripción
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.

think_error.tpl 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <?php
  2. if(!function_exists('parse_padding')){
  3. function parse_padding($source)
  4. {
  5. $length = strlen(strval(count($source['source']) + $source['first']));
  6. return 40 + ($length - 1) * 8;
  7. }
  8. }
  9. if(!function_exists('parse_class')){
  10. function parse_class($name)
  11. {
  12. $names = explode('\\', $name);
  13. return '<abbr title="'.$name.'">'.end($names).'</abbr>';
  14. }
  15. }
  16. if(!function_exists('parse_file')){
  17. function parse_file($file, $line)
  18. {
  19. /*提高体验 by 小虎哥*/
  20. $rootPath = realpath(dirname($_SERVER['SCRIPT_FILENAME']));
  21. if (!stristr($file, $rootPath)) {
  22. $rootPath = dirname($rootPath);
  23. }
  24. $filestr = str_replace($rootPath, '', $file);
  25. return $filestr." 第 {$line} 行左右";
  26. /*--end*/
  27. }
  28. }
  29. if(!function_exists('parse_args')){
  30. function parse_args($args)
  31. {
  32. $result = [];
  33. foreach ($args as $key => $item) {
  34. switch (true) {
  35. case is_object($item):
  36. $value = sprintf('<em>object</em>(%s)', parse_class(get_class($item)));
  37. break;
  38. case is_array($item):
  39. if(count($item) > 3){
  40. $value = sprintf('[%s, ...]', parse_args(array_slice($item, 0, 3)));
  41. } else {
  42. $value = sprintf('[%s]', parse_args($item));
  43. }
  44. break;
  45. case is_string($item):
  46. if(strlen($item) > 20){
  47. $value = sprintf(
  48. '\'<a class="toggle" title="%s">%s...</a>\'',
  49. htmlentities($item),
  50. htmlentities(substr($item, 0, 20))
  51. );
  52. } else {
  53. $value = sprintf("'%s'", htmlentities($item));
  54. }
  55. break;
  56. case is_int($item):
  57. case is_float($item):
  58. $value = $item;
  59. break;
  60. case is_null($item):
  61. $value = '<em>null</em>';
  62. break;
  63. case is_bool($item):
  64. $value = '<em>' . ($item ? 'true' : 'false') . '</em>';
  65. break;
  66. case is_resource($item):
  67. $value = '<em>resource</em>';
  68. break;
  69. default:
  70. $value = htmlentities(str_replace("\n", '', var_export(strval($item), true)));
  71. break;
  72. }
  73. $result[] = is_int($key) ? $value : "'{$key}' => {$value}";
  74. }
  75. return implode(', ', $result);
  76. }
  77. }
  78. ?>
  79. <!DOCTYPE html>
  80. <html>
  81. <head>
  82. <meta charset="UTF-8">
  83. <title><?php echo \think\Lang::get('System Error'); ?></title>
  84. <meta name="robots" content="noindex,nofollow" />
  85. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  86. <style>
  87. /* Base */
  88. body {
  89. color: #333;
  90. font: 14px Verdana, "Helvetica Neue", helvetica, Arial, 'Microsoft YaHei', sans-serif;
  91. margin: 0;
  92. padding: 0 20px 20px;
  93. word-break: break-word;
  94. }
  95. h1{
  96. margin: 10px 0 0;
  97. font-size: 28px;
  98. font-weight: 500;
  99. line-height: 32px;
  100. }
  101. h2{
  102. color: #4288ce;
  103. font-weight: 400;
  104. padding: 6px 0;
  105. margin: 6px 0 0;
  106. font-size: 18px;
  107. border-bottom: 1px solid #eee;
  108. }
  109. h3.subheading {
  110. color: #4288ce;
  111. margin: 6px 0 0;
  112. font-weight: 400;
  113. }
  114. h3{
  115. /*margin: 12px;*/
  116. font-size: 16px;
  117. font-weight: bold;
  118. }
  119. abbr{
  120. cursor: help;
  121. text-decoration: underline;
  122. text-decoration-style: dotted;
  123. }
  124. a{
  125. color: #868686;
  126. cursor: pointer;
  127. }
  128. a:hover{
  129. text-decoration: underline;
  130. }
  131. .line-error{
  132. background: #f8cbcb;
  133. }
  134. .echo table {
  135. width: 100%;
  136. }
  137. .echo pre {
  138. padding: 16px;
  139. overflow: auto;
  140. font-size: 85%;
  141. line-height: 1.45;
  142. background-color: #f7f7f7;
  143. border: 0;
  144. border-radius: 3px;
  145. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  146. }
  147. .echo pre > pre {
  148. padding: 0;
  149. margin: 0;
  150. }
  151. /* Layout */
  152. .col-md-3 {
  153. width: 25%;
  154. }
  155. .col-md-9 {
  156. width: 75%;
  157. }
  158. [class^="col-md-"] {
  159. float: left;
  160. }
  161. .clearfix {
  162. clear:both;
  163. }
  164. @media only screen
  165. and (min-device-width : 375px)
  166. and (max-device-width : 667px) {
  167. .col-md-3,
  168. .col-md-9 {
  169. width: 100%;
  170. }
  171. }
  172. /* Exception Info */
  173. .exception {
  174. margin-top: 20px;
  175. }
  176. .exception .message{
  177. padding: 12px;
  178. border: 1px solid #ddd;
  179. border-bottom: 0 none;
  180. line-height: 18px;
  181. font-size:16px;
  182. border-top-left-radius: 4px;
  183. border-top-right-radius: 4px;
  184. font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
  185. }
  186. .exception .code{
  187. float: left;
  188. text-align: center;
  189. color: #fff;
  190. margin-right: 12px;
  191. padding: 16px;
  192. border-radius: 4px;
  193. background: #999;
  194. }
  195. .exception .source-code{
  196. padding: 6px;
  197. border: 1px solid #ddd;
  198. background: #f9f9f9;
  199. overflow-x: auto;
  200. }
  201. .exception .source-code pre{
  202. margin: 0;
  203. }
  204. .exception .source-code pre ol{
  205. margin: 0;
  206. color: #4288ce;
  207. display: inline-block;
  208. min-width: 100%;
  209. box-sizing: border-box;
  210. font-size:14px;
  211. font-family: "Century Gothic",Consolas,"Liberation Mono",Courier,Verdana;
  212. padding-left: <?php echo (isset($source) && !empty($source)) ? parse_padding($source) : 40; ?>px;
  213. }
  214. .exception .source-code pre li{
  215. border-left: 1px solid #ddd;
  216. height: 18px;
  217. line-height: 18px;
  218. }
  219. .exception .source-code pre code{
  220. color: #333;
  221. height: 100%;
  222. display: inline-block;
  223. border-left: 1px solid #fff;
  224. font-size:14px;
  225. font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
  226. }
  227. .exception .trace{
  228. padding: 6px;
  229. border: 1px solid #ddd;
  230. border-top: 0 none;
  231. line-height: 16px;
  232. font-size:14px;
  233. font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
  234. }
  235. .exception .trace ol{
  236. margin: 12px;
  237. }
  238. .exception .trace ol li{
  239. padding: 2px 4px;
  240. }
  241. .exception div:last-child{
  242. border-bottom-left-radius: 4px;
  243. border-bottom-right-radius: 4px;
  244. }
  245. /* Exception Variables */
  246. .exception-var table{
  247. width: 100%;
  248. margin: 12px 0;
  249. box-sizing: border-box;
  250. table-layout:fixed;
  251. word-wrap:break-word;
  252. }
  253. .exception-var table caption{
  254. text-align: left;
  255. font-size: 16px;
  256. font-weight: bold;
  257. padding: 6px 0;
  258. }
  259. .exception-var table caption small{
  260. font-weight: 300;
  261. display: inline-block;
  262. margin-left: 10px;
  263. color: #ccc;
  264. }
  265. .exception-var table tbody{
  266. font-size: 13px;
  267. font-family: Consolas,"Liberation Mono",Courier,"微软雅黑";
  268. }
  269. .exception-var table td{
  270. padding: 0 6px;
  271. vertical-align: top;
  272. word-break: break-all;
  273. }
  274. .exception-var table td:first-child{
  275. width: 28%;
  276. font-weight: bold;
  277. white-space: nowrap;
  278. }
  279. .exception-var table td pre{
  280. margin: 0;
  281. }
  282. /* Copyright Info */
  283. .copyright{
  284. margin-top: 24px;
  285. padding: 12px 0;
  286. border-top: 1px solid #eee;
  287. }
  288. /* SPAN elements with the classes below are added by prettyprint. */
  289. pre.prettyprint .pln { color: #000 } /* plain text */
  290. pre.prettyprint .str { color: #080 } /* string content */
  291. pre.prettyprint .kwd { color: #008 } /* a keyword */
  292. pre.prettyprint .com { color: #800 } /* a comment */
  293. pre.prettyprint .typ { color: #606 } /* a type name */
  294. pre.prettyprint .lit { color: #066 } /* a literal value */
  295. /* punctuation, lisp open bracket, lisp close bracket */
  296. pre.prettyprint .pun, pre.prettyprint .opn, pre.prettyprint .clo { color: #660 }
  297. pre.prettyprint .tag { color: #008 } /* a markup tag name */
  298. pre.prettyprint .atn { color: #606 } /* a markup attribute name */
  299. pre.prettyprint .atv { color: #080 } /* a markup attribute value */
  300. pre.prettyprint .dec, pre.prettyprint .var { color: #606 } /* a declaration; a variable name */
  301. pre.prettyprint .fun { color: red } /* a function name */
  302. </style>
  303. </head>
  304. <body>
  305. <div class="echo">
  306. </div>
  307. <div class="exception">
  308. <div class="info">
  309. <div>
  310. <h2>当前页面出现致命错误,详细报错请切换至"开发模式"调试</h2>
  311. </div>
  312. <div><h3 style="font-weight: normal;">切换方法:后台>基本信息>核心设置>勾选开发模式并保存</h3></div>
  313. </div>
  314. </div>
  315. <div class="copyright">
  316. <?php echo htmlspecialchars_decode($copyright); ?>
  317. </div>
  318. </body>
  319. </html>