Latest News

Home » PHP程式設計教學 » 為什麼我升級PHP後,原來的程式出現滿螢幕的 Notice: Undefined variable:(PHP程式設計問題與答覆)

為什麼我升級PHP後,原來的程式出現滿螢幕的 Notice: Undefined variable:(PHP程式設計問題與答覆)

PHP程式設計問題諮詢:
為什麼我升級PHP後,原來的程式出現滿螢幕的 Notice: Undefined variable:


PHP程式設計問題回覆:
 Notice: Undefined variable:
這是警告的意思,由於變數未定義引起的.
打開php.ini,找到最下面的error_reporting,修改為error_reporting = E_ALL & ~E_NOTICE

對於Parse error錯誤
error_reporting(0)無法關閉.
如果你想關閉任何錯誤提示,打開php.ini,找到display_errors,設置為display_errors = Off.以後任何錯誤都不會提示.

About

發佈留言