Rumah > Artikel > pembangunan bahagian belakang > php怎么去掉notice提示
php去掉notice提示的方法:可以利用error_reporting()函数来实现。error_reporting()函数用来设置当前脚本的错误报告级别,如:【error_reporting(E_ALL ^ E_NOTICE)】。
方法一:
(推荐教程:php图文教程)
在php.ini文件中修改error_reporting
修改为:
error_reporting = E_ALL & ~E_NOTICE
方法二:
(学习视频推荐:php视频教程)
在脚本中加入下面的代码:
/* Report all errors except E_NOTICE */ error_reporting(E_ALL ^ E_NOTICE);
Atas ialah kandungan terperinci php怎么去掉notice提示. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!