Press "Enter" to skip to content

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

发表评论