php.ini中屏蔽所有错误的方法

1、打开“php.ini”配置文件,在其中搜索“display_errors”项。

2、将“display_errors”项的值设置为“Off”即可关闭所有的PHP错误报告,进而屏蔽所有错误。

实例

;ThisdirectivecontrolswhetherornotandwherePHPwilloutputerrors,

;noticesandwarningstoo.Erroroutputisveryusefulduringdevelopment,but

;itcouldbeverydangerousinproductionenvironments.Dependingonthecode

;whichistriggeringtheerror,sensitiveinformationcouldpotentiallyleak

;outofyourapplicationsuchasdatabaseusernamesandpasswordsorworse.

;Forproductionenvironments,werecommendloggingerrorsratherthan

;sendingthemtoSTDOUT.

;PossibleValues:

;Off=Donotdisplayanyerrors

;stderr=DisplayerrorstoSTDERR(affectsonlyCGI/CLIbinaries!)

;Onorstdout=DisplayerrorstoSTDOUT

;DefaultValue:On

;DevelopmentValue:On

;ProductionValue:Off

;http://php.net/display-errors

display_errors=Off
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容