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 swap two variables without using 3rd temp variable.
Name some of the functions in php.
What is difference between required and require_once in php?
How to get the ip address of the client?
Explain what does the function get_magic_quotes_gpc() means?
Is apache needed for php?
Explain preg_Match and preg_replace?
How to test if a variable is an array?
What is laravel php?
What is abstract class in php?
Please explain is it possible to use com component in php?
What is the differences between $a != $B and $a !== $B?
What is string in php?
How check variable is set or not in php?
Explain how to execute a php script using command line.