Answer Posted / guest
Exception handling is used to change the normal flow of the
code execution if a specified error (exceptional) condition
occurs. This condition is called an exception.
This is what normally happens when an exception is
triggered:
•The current code state is saved
•The code execution will switch to a predefined (custom)
exception handler function
•Depending on the situation, the handler may then resume
the execution from the saved code state, terminate the
script execution or continue the script from a different
location in the code
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why do we use javascript in php?
What is strcmp?
What is the difference between abstract class and interface in php?
Tell me how to find the length of a string?
How to check if a string contains a character or word in php?
How can we get the error when there is a problem to upload a file?
Is php dying 2018?
Can we use include ("xyz.php") two times in a php page "index.php"?
How can you execute php script from the command line?
What is difference between variable declaration and variable definition?
What is final keyword in php?
What is putenv?
List some string function name in php?
Can php run without apache?
What is the use of namespace in php?