這篇文章主要介紹了ThinkPHP中自訂錯誤頁面和提示頁面的方法,以一個完整的實例形式詳細講述了ThinkPHP實現自訂錯誤提示與跳轉頁面的方法,是非常常見的實用技巧,需要的朋友可以參考下
本文實例講述了ThinkPHP中自訂錯誤頁面和提示頁面的方法。分享給大家供大家參考。具體實作方法如下:
在ThinkPHP中有兩個方法時提示錯誤頁_404('錯誤訊息','跳轉的位址');halt('提示訊息');
這兩個函數都可以自訂錯誤頁面在設定檔中加
複製程式碼 程式碼如下:
'TMPL_EXCEPTION_FILE'=>'./Public/Tpl/error.html'
這樣每次就會跳到這個頁面。
下面是我自訂的錯誤頁面
複製程式碼 程式碼如下:
在( 3 )秒後自動跳轉,或直接點擊這裡跳轉停止
$this->success('错误信息','跳转的地址(最好用U())',时间); $this->error();
下面是我改變ThinkPHP中的提示頁面
複製程式碼 程式碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>提示消息 - ThinkPHP</title> <style type="text/css"> body { font: 75% Arail; text-align: center; } #notice { width: 300px; background: #FFF; border: 1px solid #BBB; background: #EEE; padding: 3px; position: absolute; left: 50%; top: 50%; margin-left: -155px; margin-top: -100px; } #notice p { background: #FFF; padding: 30px 0 20px; font-size: 1.2em; font-weight:bold } #notice p { background: #FFF; margin: 0; padding: 0 0 20px; } a { color: #f00} a:hover { text-decoration: none; } </style> </head> <body> <p id="notice"> <present name="message"> <p style="font: italic bold 2cm cursive,serif; color:green"> ok </p> <p class="success" style="width:100%;text-align:left;padding-left:10px;padding-right:10px"> <?php echo($message); ?> </p> <else/> <p style="font: italic bold 2cm cursive,serif; color:red"> × </p> <p class="error" style="width:100%;text-align:left;padding-left:10px;padding-right:10px"> </p> </present> <p> 在( <span id="sec" style="color:blue;font-weight:bold"><?php echo($waitSecond); ?></span> )秒后自动跳转,或直接点击 <a href="javascript:window.location='<?php echo($jumpUrl); ?>'">这里</a> 跳转<br> <span style="display:block;text-decoration:underline;cursor:pointer;line-height:25px" onclick="stop(this)">停止</span> </p> </p> <script> var seco=document.getElementByIdx_x("sec"); var time=<?php echo($waitSecond); ?>; var tt=setInterval(function(){ time--; seco.innerHTML=time; if(time<=0){ window.location='<?php echo($jumpUrl); ?>' return; } }, 1000); function stop(obj){ clearInterval(tt); obj.style.display="none"; } </script> </body> </html>
相關建議:
以上是ThinkPHP中自訂錯誤頁面與提示頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!