php怎样去掉warning提示

  • 来源:网络
  • 更新日期:2020-08-17

摘要:php去掉warning提示的方法:1、打开php.ini配置文件;2、编辑配置【display_errors = Off】;3、编辑配置【error_reporting = E_ALL】。关闭php的warning提示的方法:(推荐教程:php图

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); 
?>