php自定义异常

前端之家收集整理的这篇文章主要介绍了php自定义异常前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何编写自定义异常处理程序.

所以我可以做类似的事情

抛出新的dbException($sql,$message);

输出

There was an error in your query
Message: {$message here}
Query: {$sql here}
Line: {line exception was thrown on}
File: {file exception was thrown from}

但我也想抓住例如语法错误和解析错误(如果可能的话)

嗯,你可以 extend the Exception class但是你喜欢.对于自定义例外,您可能需要查看帖子:

> PHP 5 OOP: Delegation and Custom Exceptions

您还应该发现此线程有用:

> Custom Exception Messages: Best practices

原文链接:https://www.f2er.com/php/132754.html

猜你在找的PHP相关文章