think_exception.tpl 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>系统发生错误</title>
  5. <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
  6. <meta name="Generator" content="EditPlus"/>
  7. <style>
  8. body{
  9. font-family: 'Microsoft Yahei', Verdana, arial, sans-serif;
  10. font-size:14px;
  11. }
  12. a{text-decoration:none;color:#174B73;}
  13. a:hover{ text-decoration:none;color:#FF6600;}
  14. h2{
  15. border-bottom:1px solid #DDD;
  16. padding:8px 0;
  17. font-size:25px;
  18. }
  19. .title{
  20. margin:4px 0;
  21. color:#F60;
  22. font-weight:bold;
  23. }
  24. .message,#trace{
  25. padding:1em;
  26. border:solid 1px #000;
  27. margin:10px 0;
  28. background:#FFD;
  29. line-height:150%;
  30. }
  31. .message{
  32. background:#FFD;
  33. color:#2E2E2E;
  34. border:1px solid #E0E0E0;
  35. }
  36. #trace{
  37. background:#E7F7FF;
  38. border:1px solid #E0E0E0;
  39. color:#535353;
  40. }
  41. .notice{
  42. padding:10px;
  43. margin:5px;
  44. color:#666;
  45. background:#FCFCFC;
  46. border:1px solid #E0E0E0;
  47. }
  48. .red{
  49. color:red;
  50. font-weight:bold;
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <div class="notice">
  56. <h2>系统发生错误 </h2>
  57. <div >您可以选择 [ <A HREF="<?php echo(strip_tags($_SERVER['PHP_SELF']))?>">重试</A> ] [ <A HREF="javascript:history.back()">返回</A> ] 或者 [ <A HREF="<?php echo(__APP__);?>">回到首页</A> ]</div>
  58. <?php if(isset($e['file'])) {?>
  59. <p><strong>错误位置:</strong> FILE: <span class="red"><?php echo $e['file'] ;?></span> LINE: <span class="red"><?php echo $e['line'];?></span></p>
  60. <?php }?>
  61. <p class="title">[ 错误信息 ]</p>
  62. <p class="message"><?php echo strip_tags($e['message']);?></p>
  63. <?php if(isset($e['trace'])) {?>
  64. <p class="title">[ TRACE ]</p>
  65. <p id="trace">
  66. <?php echo nl2br($e['trace']);?>
  67. </p>
  68. <?php }?>
  69. </div>
  70. <div align="center" style="color:#FF3300;margin:5pt;font-family:Verdana"> ThinkPHP <sup style='color:gray;font-size:9pt'><?php echo THINK_VERSION;?></sup><span style='color:silver'> { Fast & Simple OOP PHP Framework } -- [ WE CAN DO IT JUST THINK ]</span>
  71. </div>
  72. </body>
  73. </html>