PHP 顯示錯誤訊息

PHP顯示錯誤訊息方法, 不更動php.ini設定, 直接在code處理

<?php

//放在程式開頭
ini_set('display_errors','1');
error_reporting(E_ALL);

//...(後續動作)

?>

留言