您现在的位置是:课程教程文章
php.ini中屏蔽所有错误的方法
2023-12-13 23:15课程教程文章 人已围观
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
以上就是php.ini中屏蔽所有错误的方法,希望对大家有所帮助。更多php学习指路:php教程
课程教程:php.ini中屏蔽所有错误的方法下一篇:没有了