PHP 运行时错误列表
我想知道是否存在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有明确的 PHP 运行时错误列表。请参阅这个问题。然而,大多数 PHP 错误通常会导致以下情况:
正如上面所说,调用未设置的变量通常不会导致致命错误。 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:
As drew said above, calling an unset variable won't typically cause a fatal error. PHP will generally assume NULL for its use.
未设置的变量只是一个通知。根据您的错误报告设置,用户不会看到这一点,并且它将返回 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?