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
What is a php tag?
Does php pass arrays by reference?
What is php dependency injection?
How can I learn php fast?
Why use php artisan serve?
What is meant by public, private, protected, static and final scopes?
What is var_dump function in php?
How does php serialize work?
What is the main difference between asp net and php?
What are the rules in creating php variable?
How to convert the first character to upper case?
Where is my php ini file?
I am writing an application in php that outputs a printable version of driving directions. It contains some long sentences, and I am a neat freak, and would like to make sure that no line exceeds 50 characters. How do I accomplish that with php?
What is lazy loading in php?
What is use of echo in php?