实例首页
自学教程
IT工具箱
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>PHP Exception 实例 - 自学教程(runoops.com)</title> </head> <body> <?php function myException($exception) { echo "<b>Exception:</b> ", $exception->getMessage(); } set_exception_handler('myException'); throw new Exception('Uncaught Exception occurred'); ?> </body> </html>
运行结果: