What are the different types of Errors in PHP?
Answer Posted / jaysingh
Notices: These are non-critical errors which PHP encounters
while running a script. For example, a variable
accessibility before it is declared.
Warnings: The are more serious errors. For example, using
include()without the existence of the file.
Fatal Errors: These errors are critical errors. For example,
creating an object of a non-existent class. These errors
terminate the script’s execution immediately. These are
intimated to the users.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How check variable is set or not in php?
What is $row in php?
How to count a number of words in a string in php?
What are the new features available in php 7?
Does php need a closing tag?
What is substr() in php? And how it is used?
How to create a text file in PHP?
What is the difference between static and dynamic websites?
How does php isset work?
Can we use include ("xyz.php") two times in a php page "index.php"?
Is php class name case sensitive?
How to reset/destroy a cookie in php?
What is include in php?
Does session expire on closing browser?
What is mean tnq