码迷,mamicode.com
首页 > 其他好文 > 详细

error_reporting()

时间:2019-12-16 13:38:17      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:php5   secondary   notice   code   warning   情况下   常用设置   epo   php   

error_reporting()

 

1.概念

  错误报告级别:指定了在什么情况下,脚本代码中的错误(这里的错误是广义的错误,包括E_NOTICE注意、E_WARNING警告、E_ERROR致命错误等)会以错误报告的形式输出。

2.常用设置说明

error_reporting(-1); 表示显示所有PHP错误报告,包括将来PHP加入的新的错误级别。 至PHP5.4,E_ALL有同样的行为。

error_reporting(0); 表示关闭所有PHP错误报告

error_reporting(7); 表示显示 E_ERROR(1) | E_WARING(2) | E_PARSE(4) == (1+2+4)

error_reporting()

标签:php5   secondary   notice   code   warning   情况下   常用设置   epo   php   

原文地址:https://www.cnblogs.com/starshine-zhp/p/12048302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!