我認爲下面的代碼是使用try和catch在php中使用PDO的最佳方式。在PDO中使用try和catch的最好方法是什麼
在抓我形容:行號,文件和errormessage的
error_reporting(E_ALL);
try{
// code that works
}
catch(PDOException $e)
{
$errormessage = '<p>
Regelnummer: '.$e->getLine().'<br />
Bestand: '.$e->getFile().'<br />
Foutmelding: '.$e->getMessage().'
</p>';
trigger_error($errormessage);
}
如果有人知道一個更好的方式來寫try和catch,請在下面寫。
檢查[標籤:PDO]的信息頁:https://stackoverflow.com/tags/ pdo/info – hjpotter92
最好的方法是[**不要**嘗試並抓住所有](https://phpdelusions.net/pdo#errors) –