;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
那一块下面的就是了。好好看看php.ini中的注释

解决方案 »

  1.   

    error_reporting   =  E_ALL & ~E_NOTICE
      

  2.   

    那里好像只有一些examples,这样的:
    ; Examples:
    ;
    ;   - Show all errors, except for notices
    ;
    ;error_reporting = E_ALL & ~E_NOTICE
    ;
    ;   - Show only errors
    ;
    ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
    ;
    ;   - Show all errors except for notices
    ;
    error_reporting  = E_ALL; display all errors, warnings and notices
    我知道应该用第一个,但我应该怎样改呀?
      

  3.   

    将;error_reporting = E_ALL & ~E_NOTICE最前面的分号去掉