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 is the delimiter default in PHP?
Is php front end or back end?
Tell me what's the difference between include and require?
Php code to find whether a number armstrong or not?
Do I need to install php after xampp?
How php statement is different from php script?
What language is php written in?
What is final class and final method in php?
What is the function mysql_pconnect() useful for?
Explain briefly about a search-friendly site looks like?
What is php simple definition?
In php, objects are they passed by value or by reference?
What’s the special meaning of __sleep and __wakeup?
Where are cookies stored php?
What happens if an expected input field was not submitted?