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 take a substring from a given string?
When to use get and post request?
Can php replace javascript?
How to get elements in reverse order of an array in php?
What are sql functions?
List few sensible functions in PHP?
What is url encoding and decoding in php?
Is salary fixed or variable cost?
How is a session id generated?
What is session_start () in php?
What is the function func_num_args() used for?
Which is incorrect with respect to separating php code and html?
Is php difficult to learn?
How to create a mysql connection in php?
What does $globals mean?