Php custom error handling usage example

Source: Internet
Author: User

Php custom error handling usage example

This article mainly introduces php custom error handling usage. The example analyzes php's error handling skills through custom functions. For more information, see

 

 

This example describes how to handle php custom errors. Share it with you for your reference. The details are as follows:

?

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

<? Php

Error_reporting (E_ALL );

Function ErrHandler ($ errorno, $ errorstr, $ errorfile, $ errorline)

{

$ Display = true;

$ Policy = false;

$ Halt_script = false;

$ Error_msg = "<br> The $ errorno error is occurring at $ errorline in

$ Errorfile <br> ";

Switch ($ errorno)

{

Case E_USER_NOTICE:

Case E_NOTICE:

$ Halt_script = false;

$ Policy = true;

$ Label = "<B> Notice </B> ";

Break;

Case E_USER_WARNING:

Case E_WARNING:

$ Halt_script = false;

$ Policy = true;

$ Label = "<B> Warning </B> ";

Break;

Case E_USER_ERROR:

Case E_ERROR:

$ Label = "<B> Fatal Error </B> ";

$ Policy = true;

$ Halt_script = false;

Break;

Case E_PARSE:

$ Label = "<B> Parse Error </B> ";

$ Policy = true;

$ Halt_script = true;

Break;

Default:

$ Label = "<B> Unknown Error </B> ";

Break;

}

If ($ Policy)

{

$ Msg = $ label. $ error_msg;

Echo $ msg;

}

If ($ halt_script) exit-1;

}

$ Error_handler = set_error_handler ("ErrHandler ");

Echo "<BR> <H2> Using Custom Error Handler

Trigger_error ("<BR> Error caused by E_USER_NOTICE </BR>", E_USER_NOTICE );

Trigger_error ("<BR> Error caused by E_USER_WARNING </BR>", E_USER_WARNING );

Trigger_error ("<BR> Error caused by E_USER_ERROR </BR>", E_USER_ERROR );

Trigger_error ("<BR> Error caused by E_PARSE </BR>", E_PARSE );

?>

I hope this article will help you with php programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.