; E_NOTICE - run-time notices (these are warnings which often result from a bug in your code, but it's possible that it was intentional (e.g., using an uninitialized variable and relying on the fact it's automatically initialized to an empty string)
; E_NOTICE 脚本运行时产生的提醒(往往是我们写的脚本里面的一些bug,比如某个变量没有定义),这个错误不 会导致任务中断。
; E_STRICT - run-time notices, enable to have PHP suggest changes to your code which will ensure the best interoperability and forward compatibility of your code
; E_STRICT 脚本运行时产生的提醒信息,会包含一些php抛出的让我们要如何修改的建议信息。
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
; E_CORE_ERROR 在php启动后发生的致命性错误
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's nitial startup
; E_CORE_WARNING 在php启动后发生的非致命性错误,也就是警告信息