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 to store the uploaded file to the final location?
What is inheritance in php?
What is the function used to change the root directory in PHP?
What is env in laravel?
Can you define an array argument as a reference type?
Do you know when sessions ends?
How to update memcached when you make changes to php?
What is parent __construct ();?
How to convert strings to numbers in php?
How can you make a connection with mysql server using php?
What are the advantages of object-oriented programming in php?
What are php errors?
How does php sessions work?
What is the importance of "method" attribute in a html form?
What is dao in php?