What are the different types of errors in PHP?
Answers were Sorted based on User's Feedback
Answer / sreedevi
E_warining
E_error
E_notice
E_user_error
E_user_notice
E_user_warning
E_all
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rubina
There are three types of Errors:
Notices:They are not critical errors.They are not displayed
t the users
Warnings:they are trivial.They are displayed to the user but
it does not stop the execution of script.
Fatal errors:They are critical errors and they stop the
execution of the script when they are encountered.
The above mentioned E_ALL,E_PARSER are error constants
| Is This Answer Correct ? | 3 Yes | 0 No |
How can I loop through the members of an array?
1 Answers Rushmore Consultancy,
Does php need a closing tag?
Is laravel easy to learn?
Swap two variables value without using third variable in php ?
How many ways to include variables in double-quoted strings in php?
can you give me an example code of calling java script function in php variable using AJAX.or with out ajax??????
What is difference between ksort() and usort() functions.
What is the use of callback in php?
Are php sessions secure?
what is "mysql_pconnect", i know mysql_connect but what it is pconnect is their?
Is nan in javascript?
What is the use of rand() in php?