简述屏蔽PHP程序的notice警告的方法?
答案
答:初始化变量,文件开始设置错误级别或者修改php.ini设置error_reportingset_error_handler和@抑制错误:
- 修改php.ini,设置
error_reporting=E_ALL & ~E_NOTICE
。 - 修改php.ini,设置
display_errors=Off
。 - 程序中添加一行
error_reporting(0);
- 程序中添加一行
error_reporting(E_ALL & ~E_NOTICE);