Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近更换了电脑并将我正在处理的网站从一台电脑转移到另一台电脑(包括数据库)。
在新电脑上加载我的网站时,我遇到了这个错误:
注意:未定义常量的使用注意:未定义索引:
我做了一些研究,发现可以通过将其添加到我的代码中来解决它:
<?php error_reporting (E_ALL ^ E_NOTICE); ?>
这是好事吗?或者我应该更多地更改我的代码?
这很可能是不同的 PHP 设置。您现在正在测试的计算机已打开通知。在您的 php.ini 文件中搜索文本“error_reporting”并将其更改为E_ALL & ~E_NOTICE如果您不想看到通知。
E_ALL & ~E_NOTICE
但最好在您的开发环境中保留通知
编辑:我看到你用答案编辑了你原来的问题
error_reporting(E_ALL); ini_set('display_errors', 'On');