Explain different types of errors in PHP (i.e. arguments in
errorreporting function)?
Answer Posted / malkesh sondagar
Its three types
1. Fatal error : this will stop the script.
2. Warning : A warning is a message saying "You are doing
something wrong and it is very likely to cause errors in the
future, so please fix it."
3. Notice : A notice is an advisory message meaning "You
probably shouldn't be doing what you're doing, but I'll let
you do it anyway"
Both notices and warnings will not halt execution of your
script, although I would encourage you to take them
seriously and strive to have not even one notice in your apps.
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
What are the differences between GET and POST methods in form submitting?
Tell me what does pear stands for?
What is the purpose of break and continue statement?
What is the difference between for and foreach loop in php?
What is final keyword in php?
How to send email using php script?
how to track user logged out or not? when a user is idle?
What is php and sql?
What are the steps involved to run php?
What is oops php?
How to find length of an array in php ?
What is class extend in php?
What is php session_start() and session_destroy() function?
How to get the total number of values in an array?
What is php beginner?