gpt4 book ai didi

null - PHP echo `null` 值

转载 作者:行者123 更新时间:2023-12-02 05:31:49 25 4
gpt4 key购买 nike

我最近从 XAMPP 移植到最新的 WAMP 版本。之前服务器的所有代码都工作正常,特别是显示 Null 值。

In XAMPP:

echo $a;

If $a is not yet declared, the system just prints nothing.

但是,

in WAMP

echo $a;

If $a is not yet declared, the system gives an error `Undefined Variable`.

我检查了我的 php.ini 配置文件和 httpd.conf,但我仍然无法让新版本显示空值。

问题:

配置中有没有让 php 显示空值而不声明它或其他任何东西?

附言:我们使用的 XAMPP 是 1.7.3我现在用的WAMP是2.2e

请帮忙。谢谢。 :-)

最佳答案

它可能是 PHP 错误级别的 PHP 设置。

PHP 仅在启用 PHP 通知时显示 undefined variable 。

默认情况下,XAMPP 可能不会启用 PHP 通知,而 WAMP 很可能会启用。

要使 WAMP 不输出 undefined variable ,请打开 php.ini 并将 'error_reporting' 更改为:

error_reporting = E_ALL & ~E_NOTICE

这应该告诉 PHP 输出除通知之外的所有错误。

关于null - PHP echo `null` 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12260219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com