当前位置: 代码迷 >> PHP >> error_reporting的用法解决思路
  详细解决方案

error_reporting的用法解决思路

热度:165   发布时间:2013-03-01 18:33:02.0
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 8
30711
30711