php怎么关闭warning
程序员文章站
2022-03-29 20:02:07
...
php关闭warning的方法:1、打开php.ini配置文件;2、修改【display_errors = Off】;3、修改【error_reporting = E_ALL12】。
关闭php的warning提示的方法:
(视频教程推荐:php视频教程)
方法1:
修改php.ini文件中的下列属性修改一下
display_errors = Off error_reporting = E_ALL12
方法2:
在php文件开头写入:
<?php error_reporting(0); ?>
相关推荐:php培训
以上就是php怎么关闭warning的详细内容,更多请关注其它相关文章!
下一篇: php错误日志如何使用