PHP set_exception_handler() Function
Complete PHP Error Reference
Definition and Usage
The set_exception_handler() function sets a user-defined function to handle
exceptions.
This function is used to create a way of handling exceptions during
runtime.
This function returns the old exception handler, or NULL on failure or if no
previous handler is defined.
Syntax
set_exception_handler(exception_function)
|
| Parameter |
Description |
| exception_function |
Required. Specifies the function to be called when
an uncaught exception occurs. This function must be defined before calling
the set_exception_handler() function. The exception handler function
requires one
parameter, which is the exception object that was thrown |
Tips and Notes
Tip: The script will stop executing after the exception handler is
called.
Example
<?php
function myException($exception)
{
echo "<b>Exception:</b> " , $exception->getMessage();
}
set_exception_handler('myException');
throw new Exception('Uncaught Exception occurred');
?>
|
The output of the code above should be something like this:
Exception: Uncaught Exception occurred
|
Complete PHP Error Reference
 |
 |
 |
 |
|
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |
 |
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |
 |
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Utilize the extensive out-of-the box features or customize your site through Ektron CMS400.NET's open architecture |
 |
Promote collaboration in your organization through project workspaces where others can efficiently find information and work together |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
|
|
 |
TAKE THE VIDEO TOUR |
 |
or download a FREE TRIAL today. |
|