//禁用错误报告
error_reporting(0);
//报告运行时错误
error_reporting(E_ERROR | E_WARNING | E_PARSE);
//报告所有错误
error_reporting(E_ALL);
//重启php-fpm
ps aux|grep php-fpm
kill -USR2 1111
记录php学习日志
//禁用错误报告
error_reporting(0);
//报告运行时错误
error_reporting(E_ERROR | E_WARNING | E_PARSE);
//报告所有错误
error_reporting(E_ALL);
//重启php-fpm
ps aux|grep php-fpm
kill -USR2 1111