不显示 mysqli 错误
我希望我的 PHP 脚本隐藏由 mysqli
对象生成的任何错误,但显示任何其他错误。有没有办法在 PHP 中做到这一点?
I want my PHP script to hide any errors generated by a mysqli
object but show any other ones. Is there a way to do this in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建自定义异常处理程序可以使其变得非常简单。我们可以简单地创建一个特殊的类,其中包含可以在 PHP 发生异常时调用的函数。该类必须是异常类的扩展。我们可以在这里抑制特定类型的错误。
或者您可以简单地使用
@
以及 mysqli 中的错误抛出函数,例如@mysqli_errno()
来抑制错误消息尝试使用 instanceof 运算符、is_a 函数或 get_class 函数获取错误类型:
Creating a custom exception handler can make it quite simple. We can simply create a special class with functions that can be called when an exception occurs in PHP. The class must be an extension of the exception class. We can suppress errors of specific type here.
or simply you can use
@
with error throwing functions in mysqli like@mysqli_errno()
to suppress error messagesTry the instanceof operator, the is_a function or the get_class function to get error type: