《PHP應用:ThinkPHP中自定義錯誤頁面和提示頁面實例》要點:
本文介紹了PHP應用:ThinkPHP中自定義錯誤頁面和提示頁面實例,希望對您有用。如果有疑問,可以聯系我們。
本文實例講述了ThinkPHP中自定義錯誤頁面和提示頁面的辦法.分享給大家供大家參考.具體實現辦法如下:PHP實戰
在ThinkPHP中有兩個辦法時提示錯誤頁面 _404('錯誤信息','跳轉的地址');halt('提示信息');
這兩個函數都可以自定義錯誤頁面在配置文件中加 PHP實戰
代碼如下:
'TMPL_EXCEPTION_FILE'=>'./Public/Tpl/error.html'
這樣每次就會跳轉到這個頁面.
下面是我定制的錯誤頁面
PHP實戰
代碼如下:
在( 3 )秒后自動跳轉,或直接點擊 這里 跳轉 停止
$this->success('錯誤信息','跳轉的地址(最好用U())',時間);PHP實戰
$this->error();PHP實戰
下面是我改變ThinkPHP中的提示頁面
PHP實戰
代碼如下:
<!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 div { 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>??
<div id="notice">??
?
<present name="message">??
<p style="font: italic bold 2cm cursive,serif; color:green">??
ok???
</p>??
<div class="success" style="width:100%;text-align:left;padding-left:10px;padding-right:10px">??
<?php echo($message); ?>??
</div>??
<else/>??
<p style="font: italic bold 2cm cursive,serif; color:red">??
×??
</p>??
<div class="error" style="width:100%;text-align:left;padding-left:10px;padding-right:10px">??
</div>??
</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>??
</div>??
<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實戰
維易PHP培訓學院每天發布《PHP應用:ThinkPHP中自定義錯誤頁面和提示頁面實例》等實戰技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培養人才。
轉載請注明本頁網址:
http://www.snjht.com/jiaocheng/13848.html