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

What is active record in php?

0 Answers  


Describe session in php.

0 Answers  


How to download and install php for windows?

0 Answers  


How to write the form tag correctly for uploading files?

0 Answers  


How the web server interprets php and interacts with the client?

0 Answers  






What should we do to be able to export data into an excel file?

0 Answers  


how to add file in php?

1 Answers   CTS,


What is the difference between "echo" and "print" in php?

0 Answers  


What are the main error types in php?

0 Answers  


Can we extend two classes in php?

0 Answers  


Explain difference between urlencode and urldecode?

0 Answers  


How can we define a variable accessible in functions of a php script?

0 Answers  


Categories