Table of Contents
提示信息!
Home Backend Development PHP Problem How to customize error page in php

How to customize error page in php

Oct 13, 2021 pm 04:36 PM
php

php method to customize the error page: 1. Add the error page template information in the configuration file; 2. Put the configuration information into /Conf/config.php of the current model; 3. In the current model Create a Public folder in the View directory and customize the error page in it.

How to customize error page in php

The operating environment of this article: windows10 system, php 7&&thinkphp 5, thinkpad t480 computer.

ThinkPHP As a lightweight PHP development framework, it has rich documentation and is easier to use than other frameworks. Therefore, we choose thinkphp here to implement a customized error page.

ThinkPHP itself provides us with its own error page, exception page and other information prompt pages. For example, the following code will display such a prompt:

1

$this->error('验证码错误!');

Copy after login

Because the built-in page is not beautiful , so we need to customize these pages. ThinkPHP provides us with the function of customizing prompt pages.

Add the following configuration information in the configuration file:

1

2

3

4

/* 错误页面模板 */

'TMPL_ACTION_ERROR'     =>  MODULE_PATH.'View/Public/error.html', // 默认错误跳转对应的模板文件

'TMPL_ACTION_SUCCESS'   =>  MODULE_PATH.'View/Public/success.html', // 默认成功跳转对应的模板文件

'TMPL_EXCEPTION_FILE'   =>  MODULE_PATH.'View/Public/exception.html',// 异常页面的模板文件

Copy after login

Put this configuration information into /Conf/config.php of the current model, and then add it to the View of the current model Create a Public folder in the directory and customize error.html success.html and exception.html in it.

The following is a simple error page template:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

<!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>跳转提示</title>

<style type="text/css">

*{ padding: 0; margin: 0; }

body{ background: #290C0C; font-family: &#39;微软雅黑&#39;; color: #fff; font-size: 16px; }

.system-message{ padding: 24px 48px; }

.system-message h1{ font-size: 80px; font-weight: normal; line-height: 120px; margin-bottom: 12px }

.system-message .jump{ padding-top: 10px;margin-bottom:20px}

.system-message .jump a{ color: #333;}

.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 36px }

.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}

#wait {

    font-size:46px;

}

#btn-stop,#href{

    display: inline-block;

    margin-right: 10px;

    font-size: 16px;

    line-height: 18px;

    text-align: center;

    vertical-align: middle;

    cursor: pointer;

    border: 0 none;

    background-color: #8B0000;

    padding: 10px 20px;

    color: #fff;

    font-weight: bold;

    border-color: transparent;

    text-decoration:none;

}

   

#btn-stop:hover,#href:hover{

    background-color: #ff0000;

}

</style>

</head>

<body>

<div class="system-message">

<h1 id="提示信息">提示信息!</h1>

<?php if(isset($message)) {?>

<p class="error"><?php echo($message); ?></p>

<?php }else{?>

<p class="error"><?php echo($error); ?></p>

<?php }?>

<p class="detail"></p>

<p class="jump">

<b id="wait"><?php echo($waitSecond); ?></b> 秒后页面将自动跳转

</p>

<div>

    <a id="href" id="btn-now" href="<?php echo($jumpUrl); ?>">立即跳转</a>

    <button id="btn-stop" type="button" onclick="stop()">停止跳转</button>

    <a id="href" id="btn-now" href="<?php echo(U(&#39;Public/logout&#39;)); ?>">重新登录</a>

</div>

</div>

<script type="text/javascript">

(function(){

 var wait = document.getElementById(&#39;wait&#39;),href = document.getElementById(&#39;href&#39;).href;

 var interval = setInterval(function(){

       var time = --wait.innerHTML;

       if(time <= 0) {

           location.href = href;

           clearInterval(interval);

       };

     }, 1000);

  window.stop = function (){

         console.log(111);

            clearInterval(interval);

 }

 })();

</script>

</body>

</html>

Copy after login

Effect:

How to customize error page in php

Recommended learning: php training

The above is the detailed content of How to customize error page in php. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles