How to turn off notice reporting in xampp?

前端 未结 5 385
梦如初夏
梦如初夏 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条回答
  •  梦毁少年i
    2021-01-16 14:22

    If your running XAMPP and want to turn off notices (or other features):
    1. Make sure your editing the right INI file (select config from the control panel)
    2. Turn display_errors=on
    3. Turn error_reporting=E_ALL & ~E_NOTICE (This will only suppress notice errors)
    4. Important - Make sure XAMPP is not overriding your settings further down the file (read the notice above the first set of settings)
    5. Stop and Start Apache after saving the file

提交回复
热议问题