xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP Exception 实例 - 自学教程(runoops.com)</title>
</head>
<body>
function myException($exception)
{
echo "<b>Exception:</b> ", $exception->getMessage();
}
set_exception_handler('myException');
throw new Exception('Uncaught Exception occurred');
</body>
</html>