PHP4和PHP5中的变量有什么区别?

发布于 2024-08-26 17:21:22 字数 90 浏览 4 评论 0原文

我对这个主题唯一了解的是......

在 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 技术交流群。

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

发布评论

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

评论(3

说谎友 2024-09-02 17:21:22

PHP 4 和 5 中的变量之间没有一般差异。

您可能指的是“E_NOTICE”错误报告级别。当该级别打开时,如果使用尚未分配的变量,PHP 将发出警告。 PHP 4 中已经存在该级别:

// Report all errors except E_NOTICE
// This is the default value set in php.ini

error_reporting(E_ALL ^ E_NOTICE);

echo $hello_world;  // Will output nothing, but also not output a notice

error_reporting(E_ALL);

echo $hello_word;   // Will output "Notice: Undefined variable"

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:

// Report all errors except E_NOTICE
// This is the default value set in php.ini

error_reporting(E_ALL ^ E_NOTICE);

echo $hello_world;  // Will output nothing, but also not output a notice

error_reporting(E_ALL);

echo $hello_word;   // Will output "Notice: Undefined variable"

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.

倦话 2024-09-02 17:21:22

事实上,没有什么真正的区别。使用未定义变量时显示的错误是 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.

念﹏祤嫣 2024-09-02 17:21:22

php4 和 php5 中的变量没有区别。您可以使用以下方法停止错误报告:

error_reporting('E_ALL ^ E_NOTICE'); 

There is not difference betwen variables in php4 and php5. You can stop error reporting by using this:

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