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

前端之家收集整理的这篇文章主要介绍了ThinkPHP中自定义错误页面和提示页面实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

在ThinkPHP中有两个方法提示错误页面 _404('错误信息','跳转的地址');halt('提示信息'); 这两个函数都可以自定义错误页面配置文件中加

代码如下:
'./Public/Tpl/error.html'
这样每次就会跳转到这个页面

下面是我定制的错误页面

代码如下:
自动跳转,或直接点击 这里 跳转 停止

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

$this->error();

下面是我改变ThinkPHP中的提示页面

代码如下:
<a href="https://www.jb51.cc/tag/tishi/" target="_blank" class="keywords">提示</a>消息 - Think<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>

<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; }

<present name="message">
<p style="font: italic bold 2cm cursive,serif; color:green">
ok

在( )秒后自动跳转,或直接点击 跳转

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

原文链接:https://www.f2er.com/thinkphp/23321.html

猜你在找的ThinkPHP相关文章