What are the different types of Errors in PHP?

Answer Posted / sriman

Different type of errors are as following:

1. E_ERROR : Fatal run-time errors.

2. E_WARNING : Run-time warning.

3. E_PARSE : Compile time parse error.

4. E_NOTICE : Run time notice.

5. E_CORE_ERROR : errors that occur during PHP's initial
startup.

6. E_CORE_WARNING : Warnings (non-fatal errors) that occur
during PHP's initial startup.

7. E_COMPILE_ERROR : Fatal compile-time errors.

8.E_USER_ERROR : User-generated error message.

9.E_USER_WARNING : User-generated warning message.

10. E_USER_NOTICE : User-generated notice message.

11.E_STRICT : Run-time notices. Enable to have PHP suggest
changes to your code which will ensure the best
interoperability and forward compatibility of your code.

12.E_RECOVERABLE_ERROR :Catchable fatal error. It indicates
that a probably dangerous error occured, but did not leave
the Engine in an unstable state.

13.E_ALL : All errors and warnings, as supported, except of
level E_STRICT in PHP < 6.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between Method overriding and overloading in PHP?

748


Explain what does $_server means?

788


What is php and its advantages?

685


Explain what is smarty?

777


What should we do to be able to export data into an excel file?

737


What is isset function in php?

798


What does $_ post mean in php?

806


Tell me how is it possible to return a value from a function?

767


Can you specify the "new line" character in single-quoted strings?

717


What is the use of Mbstring?

719


what are interfaces and Abstart classes

1706


Why shouldn't I use mysql_* functions in php?

766


Explain about looping in PHP?

817


Explain me is it possible to destroy a cookie?

731


What do you mean range() in php?

799