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 function in PHP do not return a timestamp?
How many types of php frameworks are there?
Which method removes the last element from the end of an array?
What is the integer?
What is the function mysql_pconnect() useful for?
What are the characteristics of php?
Which escape sequences can be used in single quoted strings in php?
How many data types are used by php?
What is php regular expression?
What is file upload?
Which of the data type is compound datatype supported by PHP?
What are the different tables(engine) present in mysql, which one is default?
What is php and features of php?
How can i execute PHP File using Command Line?
What is the use of $_server and $_env?