不显示 mysqli 错误

发布于 2025-01-07 11:53:31 字数 81 浏览 0 评论 0原文

我希望我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2025-01-14 11:53:31

创建自定义异常处理程序可以使其变得非常简单。我们可以简单地创建一个特殊的类,其中包含可以在 PHP 发生异常时调用的函数。该类必须是异常类的扩展。我们可以在这里抑制特定类型的错误。

或者您可以简单地使用 @ 以及 mysqli 中的错误抛出函数,例如 @mysqli_errno() 来抑制错误消息

尝试使用 instanceof 运算符、is_a 函数或 get_class 函数获取错误类型:

$var instanceof MySQLi
is_a($var, 'mysqli')
is_object($var) && get_class($var) == 'mysqli'

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 messages

Try the instanceof operator, the is_a function or the get_class function to get error type:

$var instanceof MySQLi
is_a($var, 'mysqli')
is_object($var) && get_class($var) == 'mysqli'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文