PHP 运行时错误列表

发布于 2024-10-01 17:11:25 字数 164 浏览 5 评论 0原文

我想知道是否存在 php 运行时错误列表?

如果没有,请告诉我:这些是 php 运行时错误吗?

  • 调用未设置的变量
  • 调用未定义的方法

编辑:我知道如何很好地处理错误,这个问题纯粹是理论性的 - 我想知道如何一般调用这些错误。

I wonder if a list of php runtime errors exist?

And if not, please tell me: are these php runtime errors?

  • Calling unset variable
  • Calling undefined method

Edit: I know how to handle errors well, this question is purely theoretical - I want to know how to call these errors in general.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

隔纱相望 2024-10-08 17:11:25

没有明确的 PHP 运行时错误列表。请参阅这个问题。然而,大多数 PHP 错误通常会导致以下情况:

  • 算术错误
  • 调用未定义的函数
  • 与 MySQL 或其他数据库的
  • 交互 与文件的
  • 交互 网络服务

正如上面所说,调用未设置的变量通常不会导致致命错误。 PHP 通常会假设 NULL 来使用。

There is no definitive list of PHP runtime errors. See this SO question. However, most PHP errors typically lend themselves to the following:

  • Arithmetic errors
  • Calls to undefined functions
  • Interaction with MySQL or other databases
  • Interaction with files
  • Network services

As drew said above, calling an unset variable won't typically cause a fatal error. PHP will generally assume NULL for its use.

如日中天 2024-10-08 17:11:25

未设置的变量只是一个通知。根据您的错误报告设置,用户不会看到这一点,并且它将返回 null(脚本将正常进行)。

调用未定义的函数将引发致命错误,这通常会停止那里的脚本处理。

有关错误处理,请查看 PHP 手册: http://php.net/manual/en /book.errorfunc.php

这有帮助吗?

An unset variable is a notice only. Depending on your error reporting settings, the user won't see this and it will return null (script will then proceed as normal).

Calling an undefined function will throw a fatal error which will normally stop the processing of the script there.

For error handling, check out the PHP manual: http://php.net/manual/en/book.errorfunc.php

Does that help?

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