What is exception in php?

Answers were Sorted based on User's Feedback



What is exception in php?..

Answer / rishi (dipu lari)

PHP 5 has an exception model similar to that of other
programming languages. An exception can be thrown, and
caught ("catched") within PHP. Code may be surrounded in a
try block, to facilitate the catching of potential
exceptions. Each try must have at least one corresponding
catch block. Multiple catch blocks can be used to catch
different classes of exeptions. Normal execution (when no
exception is thrown within the try block, or when a catch
matching the thrown exception's class is not present) will
continue after that last catch block defined in sequence.
Exceptions can be thrown (or re-thrown) within a catch block.

Is This Answer Correct ?    13 Yes 2 No

What is exception in php?..

Answer / 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

What is exception in php?..

Answer / guest

Wdsdggg

Is This Answer Correct ?    0 Yes 3 No

What is exception in php?..

Answer / lalu

eception is exception

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More PHP Interview Questions

describe arguments in header in php?

1 Answers  


how to add file in php?

1 Answers   CTS,


What is array filter in php?

0 Answers  


What is user defined function in php?

0 Answers  


Tell me what is use of in_array() function in php?

0 Answers  






Tell me what is the difference between unset() and unlink()?

0 Answers  


What does the expression exception::__tostring means?

0 Answers  


Why using the htaccess file

2 Answers  


How to get a random value from a php array?

0 Answers  


How to set cookies in PHP?

0 Answers  


What is the best php version for wordpress?

0 Answers  


What is php oops concepts?

0 Answers  


Categories