PHP4和PHP5中的变量有什么区别?
我对这个主题唯一了解的是......
在 PHP 5 中,当使用变量而未分配任何值时,将显示警告。
这两个不同版本之间还有其他区别吗?
the only thing i know about this subject is...
in PHP 5, when a variable used without assigned any value, then it a warning will be shown.
Is there any other difference between this 2 different version ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
PHP 4 和 5 中的变量之间没有一般差异。
您可能指的是“E_NOTICE”错误报告级别。当该级别打开时,如果使用尚未分配的变量,PHP 将发出警告。 PHP 4 中已经存在该级别:
PHP 的错误报告可以通过“error_reporting”php.ini 设置来影响,或者在脚本运行时使用
error_reporting()
函数。至于其他差异,还有很多。查看 Gordon 关于从 PHP 4 迁移到 5 的链接。
There is no general difference between variables in PHP 4 and 5.
What you are probably referring to is the ´E_NOTICE` error reporting level. When that level is turned on, PHP will complain if a variable is used that hasn't been assigned yet. That level existed in PHP 4 already:
PHP's error reporting can be influenced through the "error_reporting" php.ini setting, or during runtime of the script using the
error_reporting()
function.As for other differences, there's a load of them. Check out Gordon's link about Migrating from PHP 4 to 5.
事实上,没有什么真正的区别。使用未定义变量时显示的错误是 PHP 设置的差异,而不是 PHP 版本的差异。
Actually, there is no real difference. An error being shown on use of undefined variables is a difference in PHP settings, not PHP version.
php4 和 php5 中的变量没有区别。您可以使用以下方法停止错误报告:
There is not difference betwen variables in php4 and php5. You can stop error reporting by using this: