• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
​
4
<head>
5
    <meta charset="utf-8">
6
    <title>PHP Exception 实例 - 自学教程(runoops.com)</title>
7
</head>
8
​
9
<body>
10
​
11
    <?php
12
    function myException($exception)
13
    {
14
        echo "<b>Exception:</b> ", $exception->getMessage();
15
    }
16
​
17
    set_exception_handler('myException');
18
​
19
    throw new Exception('Uncaught Exception occurred');
20
    ?>
21
​
22
​
23
</body>
24
​
25
</html>