PHP中提示Notice: Undefined index 的解决方法
Notice: Undefined variable: contents in D:\PHPnow-1.5.1\PHPnow-1.5.1\htdocs\Zhongcaoyaocode\index.php on line 32
Notice: Use of undefined constant id - assumed ‘id‘ in D:\PHPnow-1.5.1\PHPnow-1.5.1\htdocs\Zhongcaoyaocode\index.php on line 33
为了方便程序修改,可以用以下方法:
在开头加上
error_reporting(E_ALL & ~E_NOTICE); // 这句话表示提示除去 E_NOTICE 之外的所有错误信息
这样以来,Notice信息就不再显示了。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。