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 composer phar?
What is the apache?
How can a cross-site scripting attack be prevented by php?
Which PHP function would you use to send an email?
Explain me what is the meaning of a persistent cookie?
Whether php supports microsoft sql server?
What is csrf cookie?
What is isset and unset in php?
Explain the differences between get and post methods?
What is the function in PHP do not return a timestamp?
Which function would you use to merge two arrays in php?
What are the functions to be used to get the image's properties (size, width and height)?
in PHP for pdf which library used?
What is the difference between html and php?
How to implement a class named dragonball. This class must have an attribute named ballcount (which starts from 0) and a method ifoundaball. When ifoundaball is called, ballcount is increased by one. If the value of ballcount is equal to seven, then the message you can ask your wish is printed, and ballcount is reset to 0. How would you implement this class?