error_reporting的用法error_reporting(E_ALL ^E_NOTICE)error_reporting(E_ALL ~E_NOTICE)有什么区别? ------解决方案--------------------error_reporting(E_ALL ~E_NOTICE) 错误这样才对error_reporting(E_ALL & ~E_NOTICE)没有区别echo E_ALL .' '. E_NOTICE . PHP_EOL;echo E_ALL ^ E_NOTICE , PHP_EOL;echo E_ALL & ~E_NOTICE , PHP_EOL;30719 83071130711