How to turn off notice reporting in xampp?

前端 未结 5 382
梦如初夏
梦如初夏 2021-01-16 13:33

On a remote server there is no problem, but in localhost (xampp 3.1.) I cannot turn off reporting notices.

         


        
5条回答
  •  一整个雨季
    2021-01-16 14:21

    Write this code in start of your file.

    ini_set('display_errors', 0);
    error_reporting(E_ERROR | E_WARNING | E_PARSE); 
    

    Edit1

    If you did not want to use above lines then you have to write @ before $_POST to suppress notices, like

    $Fname = @$_POST["Fname"];

    Edit 2

    With this line error_reporting = E_ALL & ~E_NOTICE also change display_errors = Off although its bad programming practices.

提交回复
热议问题