Explain different types of errors in PHP (i.e. arguments in
errorreporting function)?

Answer Posted / guest

error_reporting([int level]) sets the error_reporting
directive at runtime.

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 ?    9 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which php global variable is used for uploading a file?

512


Explain me what are the main error types in php and how do they differ?

544


What is php oops concepts?

528


Why is php used?

571


What is the main difference between require() and require_once()?

522






What is a path Traversal?

561


What is xss in php?

565


What is helper function?

512


What is php simple definition?

543


Are php variables global?

567


Does php have multiple inheritance?

515


How to get best php developer Experience in Php with Sugar CRM / VTiger.

3975


What is the differences between $a != $B and $a !== $B?

536


Tell me what is the importance of "action" attribute in a html form?

540


What is the meaning of die in php?

535