可以透過函式:error_reporting()和ini_set()來完成,
用法如下:
------------------------------------------------
ini_set('display_errors', '1');
error_reporting(E_ALL);
------------------------------------------------
第一行為設定php的設定檔,
把「display_errors」這個選項設定為開啟(1)。
第二行是回報錯誤訊息的種類。
其中,error_reporting()的參數「E_ALL」表示顯示所有錯誤訊息,
其他種類的錯誤訊息可以參考:
http://www.php.net/manual/en/errorfunc.constants.php
參考資料:
ini_set():
http://www.php.net/manual/en/function.ini-set.php
error_reporing():
http://php.net/manual/en/function.error-reporting.php
沒有留言:
張貼留言