PHP中提示Notice: Undefined index 的解决方法
程序员文章站
2022-06-01 13:55:52
...
Notice : Undefined index: message in D:\PHPnow-1.5.1\PHPnow-1.5.1\htdocs\Zhongcaoyaocode\index.php on line 4 Notice : Undefined variable: contents in D:\PHPnow-1.5.1\PHPnow-1.5.1\htdocs\Zhongcaoyaocode\index.php on line 32 Notice : Use of
Notice: Undefined index: message in D:\PHPnow-1.5.1\PHPnow-1.5.1\htdocs\Zhongcaoyaocode\index.php on line 4
Notice: Undefined variable: contents in D:\PHPnow-1.5.1\PHPnow-1.5.1\htdocs\Zhongcaoyaocode\index.php on line32
Notice: Use of undefined constant id - assumed 'id' inD:\PHPnow-1.5.1\PHPnow-1.5.1\htdocs\Zhongcaoyaocode\index.php on line33
为了方便程序修改,可以用以下方法:
在开头加上
error_reporting(E_ALL & ~E_NOTICE); // 这句话表示提示除去 E_NOTICE 之外的所有错误信息
或者在每个文件头上加
error_reporting(0);
这样以来,Notice信息就不再显示了。
推荐阅读
-
php Notice: Undefined index 错误提示解决方法
-
php Undefined index和Undefined variable的解决方法
-
PHP Notice: undefined index 完美解决方法 PHPundefined index解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP中出现Notice: Undefined index的三种解决办法
-
PHP报错 Notice: Undefined index和Notice:Undefined offset:解决方法
-
PHP提示Notice: Undefined variable的解决办法
-
Vue框架的学习中,使用substring方法时提示:Uncaught TypeError: Cannot read property ‘substring‘ of undefined的解决方法
-
一个php文件中的undefined index如何去除
-
关于PHP Undefined index的错误提示_PHP教程