PHP关闭提示、打印配置

打印配置

PHP.exe -i > Info.txt

关闭 PHP 提示的方法

搜索php.ini:

error_reporting = E_ALL

改为:

error_reporting = E_ALL & ~E_NOTICE

PHP.exe -i > Info.txt

原文地址:https://www.cnblogs.com/fenle/p/4338374.html