前两天在宝塔更新了一下PHP7.4版本
今天打开后台发现出现:
Warning: Use of undefined constant administrator - assumed 'administrator' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.fanl.cn/admin/index.php on line 23
这种情况,资料说着不属于问题,关闭一下告警即可~
解决办法:
1、宝塔面板直接:
软件管理-》找到对应的PHP版本-》设置-》配置修改-》将display_errors改为no即可
2、其他环境
- 搜索php.ini文件
- 将文件内容中的error_reporting = E_ALL改为:error_reporting = E_ALL & ~E_NOTICE
或者直接在在每个PHP文件头加上:error_reporting(0);