php怎么忽略所有错误
程序员文章站
2022-03-29 20:11:04
...
本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑
在php中,我们可以使用错误控制运算符@
或error_reporting()函数屏蔽单行或者单个文件,但要如何屏蔽所有错误呢?下面给大家介绍一下。
php忽略所有错误的方法
1、进入PHP安装目录,找到并打开 php.ini 配置文件
2、搜索 display_errors
3、然后将 display_errors 的值设置为 Off 即可关闭所有的 PHP 错误报告。
如下所示:
; This directive controls whether or not and where PHP will output errors, ; notices and warnings too. Error output is very useful during development, but ; it could be very dangerous in production environments. Depending on the code ; which is triggering the error, sensitive information could potentially leak ; out of your application such as database usernames and passwords or worse. ; For production environments, we recommend logging errors rather than ; sending them to STDOUT. ; Possible Values: ; Off = Do not display any errors ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) ; On or stdout = Display errors to STDOUT ; Default Value: On ; Development Value: On ; Production Value: Off ; http://php.net/display-errors display_errors = Off
推荐学习:《PHP视频教程》
以上就是php怎么忽略所有错误的详细内容,更多请关注其它相关文章!
上一篇: 物联网会用php吗
下一篇: php.ini中如何设置错误级别
推荐阅读
-
thinkphp3.2在php7下运行,出现错误"系统不支持:mysql"问题怎么解决?
-
web - php实际开发怎么处理错误?
-
我的Mysql碰到了1067错误,我该怎么办?_PHP
-
我的Mysql碰到了1067错误,我该怎么办?_PHP
-
sumlime-text3 - sublime text3配置php环境 no build system 错误怎么解决?
-
Windows下PHP安装路径配置错误导致Apache无法启动怎么解决?
-
php怎么获取分类下所有子类_php缓存文件写入
-
异地违章怎么处理 php错误、异常处理机制补充
-
autorun.inf怎么删除 PHP 删除一个目录及目录下的所有文件的函数代码
-
PHP 怎么忽略某个函数抛出来的警告