当前位置:Gxlcms > PHP教程 > php怎样去掉warning提示

php怎样去掉warning提示

时间:2021-07-01 10:21:17 帮助过:30人阅读

php去掉warning提示的方法:1、打开php.ini配置文件;2、编辑配置【display_errors = Off】;3、编辑配置【error_reporting = E_ALL】。

关闭php的warning提示的方法:

(推荐教程:php图文教程)

方法一:

打开php.ini文件,修改下列属性

display_errors = Off
error_reporting = E_ALL

(视频教程推荐:php视频教程)

方法二:

在php文件开头写入:

<?php 
    error_reporting(0); 
?>

以上就是php怎样去掉warning提示的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行