当前位置:首页 > CMS教程 > Thinkphp > 列表

ThinkPHP中自定义错误页面和提示页面实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-28 20:19:55 浏览: 评论:0 

这篇文章主要介绍了ThinkPHP中自定义错误页面和提示页面的方法,以一个完整的实例形式详细讲述了ThinkPHP实现自定义错误提示与跳转页面的方法,是非常常见的实用技巧,需要的朋友可以参考下

本文实例讲述了ThinkPHP中自定义错误页面和提示页面的方法。分享给大家供大家参考。具体实现方法如下:

在ThinkPHP中有两个方法时提示错误页面 _404('错误信息','跳转的地址');halt('提示信息');

这两个函数都可以自定义错误页面在配置文件中加如下代码:

'TMPL_EXCEPTION_FILE'=>'./Public/Tpl/error.html'

这样每次就会跳转到这个页面,下面是我定制的错误页面,代码如下:

在( 3 )秒后自动跳转,或直接点击 这里 跳转 停止

$this->success('错误信息','跳转的地址(最好用U())',时间);

$this->error();

下面是我改变ThinkPHP中的提示页面,代码如下:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
  2. <html xmlns="http://www.w3.org/1999/xhtml">   
  3. <head>   
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />   
  5. <title>提示消息 - ThinkPHP</title>   
  6.  
  7. <style type="text/css">   
  8. body { font: 75% Arail; text-align: center; }   
  9. #notice { width: 300px; background: #FFF; border: 1px solid #BBB; background: #EEE; padding: 3px;   
  10. position: absolute; left: 50%; top: 50%; margin-left: -155px; margin-top: -100px; }   
  11. #notice div { background: #FFF; padding: 30px 0 20px; font-size: 1.2em; font-weight:bold }   
  12. #notice p { background: #FFF; margin: 0; padding: 0 0 20px; }   
  13. a { color: #f00} a:hover { text-decoration: none; }   
  14. </style>   
  15. </head>   
  16. <body>   
  17. <div id="notice">   
  18.  
  19. <present name="message">   
  20. <p style="font: italic bold 2cm cursive,serif; color:green">   
  21. ok    
  22. </p>   
  23. <div class="success" style="width:100%;text-align:left;padding-left:10px;padding-right:10px">   
  24. <?php echo($message); ?>   
  25. </div>   
  26. <else/>   
  27. <p style="font: italic bold 2cm cursive,serif; color:red">   
  28. ×   
  29. </p>   
  30. <div class="error" style="width:100%;text-align:left;padding-left:10px;padding-right:10px">   
  31. </div>   
  32. </present> 
  33. <p>   
  34. 在( <span id="sec" style="color:blue;font-weight:bold"><?php echo($waitSecond); ?></span> )秒后自动跳转,或直接点击 <a href="javascript:window.location='<?php echo($jumpUrl); ?>'">这里</a> 跳转<br>   
  35. <span style="display:block;text-decoration:underline;cursor:pointer;line-height:25px" onclick="stop(this)">停止</span>   
  36. </p>   
  37. </div>   
  38. <script>   
  39. var seco=document.getElementByIdx_x("sec");   
  40. var time=<?php echo($waitSecond); ?>;   
  41. var tt=setInterval(function(){   
  42. time--;   
  43. seco.innerHTML=time;   
  44. if(time<=0){   
  45. window.location='<?php echo($jumpUrl); ?>'  
  46. return;   
  47. }   
  48. }, 1000);   
  49. function stop(obj){   
  50. clearInterval(tt);   
  51. obj.style.display="none";   
  52. }   
  53. </script>   
  54. </body>   
  55. </html> 

希望本文所述对大家的ThinkPHP框架程序设计有所帮助。

Tags: ThinkPHP自定义错误页面

分享到: