What are the different types of Errors in PHP?

Answer Posted / shashikiran

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 ?    33 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is basename php?

507


Define object-oriented methodology?

564


How to create a directory?

605


What is varchar mysql?

566


Explain how we can get the number of elements in an array?

510






What's the best method for sanitizing user input with php?

483


What is the use of post in php?

495


How a constant is defined in a php script?

560


Explain what is the difference between $var and $$var?

522


Explain Type juggling?

557


What type of headers have to be added in the mail function to attach a file?

537


What is the difference between Session and Cookie?

575


What is the difference server side and browser side validation?

479


How to assigning a new character in a string?

568


How to create and destroy cookies in php?

493