php关闭notice的方法:首先使用文本编辑器打开php.ini配置文件;然后修改配置【error_reporting=E_ALL & ~E_NOTICE】即可。
方法如下:
(推荐教程:php视频教程)
1、在php.ini文件中改动error_reporting改为:
error_reporting=E_ALL & ~E_NOTICE
2、如果你不能操作php.ini文件,你可以使用如下方法
在你想禁止notice错误提示的页面中加入如下代码:
error_reporting(E_ALL^E_NOTICE);
或
error_reporting(0);
相关推荐:php培训
Atas ialah kandungan terperinci php怎么关闭notice. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!