123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <?php
- if(!function_exists('parse_padding')){
- function parse_padding($source)
- {
- $length = strlen(strval(count($source['source']) + $source['first']));
- return 40 + ($length - 1) * 8;
- }
- }
-
- if(!function_exists('parse_class')){
- function parse_class($name)
- {
- $names = explode('\\', $name);
- return '<abbr title="'.$name.'">'.end($names).'</abbr>';
- }
- }
-
- if(!function_exists('parse_file')){
- function parse_file($file, $line)
- {
- /*提高体验 by 小虎哥*/
- $rootPath = realpath(dirname($_SERVER['SCRIPT_FILENAME']));
- if (!stristr($file, $rootPath)) {
- $rootPath = dirname($rootPath);
- }
- $filestr = str_replace($rootPath, '', $file);
- return $filestr." 第 {$line} 行左右";
- /*--end*/
- }
- }
-
- if(!function_exists('parse_args')){
- function parse_args($args)
- {
- $result = [];
-
- foreach ($args as $key => $item) {
- switch (true) {
- case is_object($item):
- $value = sprintf('<em>object</em>(%s)', parse_class(get_class($item)));
- break;
- case is_array($item):
- if(count($item) > 3){
- $value = sprintf('[%s, ...]', parse_args(array_slice($item, 0, 3)));
- } else {
- $value = sprintf('[%s]', parse_args($item));
- }
- break;
- case is_string($item):
- if(strlen($item) > 20){
- $value = sprintf(
- '\'<a class="toggle" title="%s">%s...</a>\'',
- htmlentities($item),
- htmlentities(substr($item, 0, 20))
- );
- } else {
- $value = sprintf("'%s'", htmlentities($item));
- }
- break;
- case is_int($item):
- case is_float($item):
- $value = $item;
- break;
- case is_null($item):
- $value = '<em>null</em>';
- break;
- case is_bool($item):
- $value = '<em>' . ($item ? 'true' : 'false') . '</em>';
- break;
- case is_resource($item):
- $value = '<em>resource</em>';
- break;
- default:
- $value = htmlentities(str_replace("\n", '', var_export(strval($item), true)));
- break;
- }
-
- $result[] = is_int($key) ? $value : "'{$key}' => {$value}";
- }
-
- return implode(', ', $result);
- }
- }
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title><?php echo \think\Lang::get('System Error'); ?></title>
- <meta name="robots" content="noindex,nofollow" />
- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
- <style>
- /* Base */
- body {
- color: #333;
- font: 14px Verdana, "Helvetica Neue", helvetica, Arial, 'Microsoft YaHei', sans-serif;
- margin: 0;
- padding: 0 20px 20px;
- word-break: break-word;
- }
- h1{
- margin: 10px 0 0;
- font-size: 28px;
- font-weight: 500;
- line-height: 32px;
- }
- h2{
- color: #4288ce;
- font-weight: 400;
- padding: 6px 0;
- margin: 6px 0 0;
- font-size: 18px;
- border-bottom: 1px solid #eee;
- }
- h3.subheading {
- color: #4288ce;
- margin: 6px 0 0;
- font-weight: 400;
- }
- h3{
- /*margin: 12px;*/
- font-size: 16px;
- font-weight: bold;
- }
- abbr{
- cursor: help;
- text-decoration: underline;
- text-decoration-style: dotted;
- }
- a{
- color: #868686;
- cursor: pointer;
- }
- a:hover{
- text-decoration: underline;
- }
- .line-error{
- background: #f8cbcb;
- }
-
- .echo table {
- width: 100%;
- }
-
- .echo pre {
- padding: 16px;
- overflow: auto;
- font-size: 85%;
- line-height: 1.45;
- background-color: #f7f7f7;
- border: 0;
- border-radius: 3px;
- font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
- }
-
- .echo pre > pre {
- padding: 0;
- margin: 0;
- }
- /* Layout */
- .col-md-3 {
- width: 25%;
- }
- .col-md-9 {
- width: 75%;
- }
- [class^="col-md-"] {
- float: left;
- }
- .clearfix {
- clear:both;
- }
- @media only screen
- and (min-device-width : 375px)
- and (max-device-width : 667px) {
- .col-md-3,
- .col-md-9 {
- width: 100%;
- }
- }
- /* Exception Info */
- .exception {
- margin-top: 20px;
- }
- .exception .message{
- padding: 12px;
- border: 1px solid #ddd;
- border-bottom: 0 none;
- line-height: 18px;
- font-size:16px;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
- }
-
- .exception .code{
- float: left;
- text-align: center;
- color: #fff;
- margin-right: 12px;
- padding: 16px;
- border-radius: 4px;
- background: #999;
- }
- .exception .source-code{
- padding: 6px;
- border: 1px solid #ddd;
-
- background: #f9f9f9;
- overflow-x: auto;
-
- }
- .exception .source-code pre{
- margin: 0;
- }
- .exception .source-code pre ol{
- margin: 0;
- color: #4288ce;
- display: inline-block;
- min-width: 100%;
- box-sizing: border-box;
- font-size:14px;
- font-family: "Century Gothic",Consolas,"Liberation Mono",Courier,Verdana;
- padding-left: <?php echo (isset($source) && !empty($source)) ? parse_padding($source) : 40; ?>px;
- }
- .exception .source-code pre li{
- border-left: 1px solid #ddd;
- height: 18px;
- line-height: 18px;
- }
- .exception .source-code pre code{
- color: #333;
- height: 100%;
- display: inline-block;
- border-left: 1px solid #fff;
- font-size:14px;
- font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
- }
- .exception .trace{
- padding: 6px;
- border: 1px solid #ddd;
- border-top: 0 none;
- line-height: 16px;
- font-size:14px;
- font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
- }
- .exception .trace ol{
- margin: 12px;
- }
- .exception .trace ol li{
- padding: 2px 4px;
- }
- .exception div:last-child{
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- }
-
- /* Exception Variables */
- .exception-var table{
- width: 100%;
- margin: 12px 0;
- box-sizing: border-box;
- table-layout:fixed;
- word-wrap:break-word;
- }
- .exception-var table caption{
- text-align: left;
- font-size: 16px;
- font-weight: bold;
- padding: 6px 0;
- }
- .exception-var table caption small{
- font-weight: 300;
- display: inline-block;
- margin-left: 10px;
- color: #ccc;
- }
- .exception-var table tbody{
- font-size: 13px;
- font-family: Consolas,"Liberation Mono",Courier,"微软雅黑";
- }
- .exception-var table td{
- padding: 0 6px;
- vertical-align: top;
- word-break: break-all;
- }
- .exception-var table td:first-child{
- width: 28%;
- font-weight: bold;
- white-space: nowrap;
- }
- .exception-var table td pre{
- margin: 0;
- }
-
- /* Copyright Info */
- .copyright{
- margin-top: 24px;
- padding: 12px 0;
- border-top: 1px solid #eee;
- }
-
- /* SPAN elements with the classes below are added by prettyprint. */
- pre.prettyprint .pln { color: #000 } /* plain text */
- pre.prettyprint .str { color: #080 } /* string content */
- pre.prettyprint .kwd { color: #008 } /* a keyword */
- pre.prettyprint .com { color: #800 } /* a comment */
- pre.prettyprint .typ { color: #606 } /* a type name */
- pre.prettyprint .lit { color: #066 } /* a literal value */
- /* punctuation, lisp open bracket, lisp close bracket */
- pre.prettyprint .pun, pre.prettyprint .opn, pre.prettyprint .clo { color: #660 }
- pre.prettyprint .tag { color: #008 } /* a markup tag name */
- pre.prettyprint .atn { color: #606 } /* a markup attribute name */
- pre.prettyprint .atv { color: #080 } /* a markup attribute value */
- pre.prettyprint .dec, pre.prettyprint .var { color: #606 } /* a declaration; a variable name */
- pre.prettyprint .fun { color: red } /* a function name */
- </style>
- </head>
- <body>
- <div class="echo">
-
- </div>
- <div class="exception">
- <div class="info">
- <div>
- <h2>当前页面出现致命错误,详细报错请切换至"开发模式"调试</h2>
- </div>
- <div><h3 style="font-weight: normal;">切换方法:后台>基本信息>核心设置>勾选开发模式并保存</h3></div>
- </div>
- </div>
-
- <div class="copyright">
- <?php echo htmlspecialchars_decode($copyright); ?>
- </div>
- </body>
- </html>
|