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
What is __ invoke in php?
What is meant by PEAR in PHP?
How to get ip address of a server in php?
What are the 5 types of data?
What is http get and post?
What is php call function?
Is php used anymore?
How to create a session? How to set a value in session?
What is xss and csrf?
Write an example to remove html tags from a string in php?
What is the difference between md5(), crc32() and sha1() crypto on php?
What is the use of pear in php?
Explain how can we execute a php script using command line?
What are php magic methods?
What is cookies? How to create cookies in php?