📜  php pdo 设置错误模式 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:40.293000             🧑  作者: Mango

代码示例1
// there are three supported ways of handing errors 
// 1. PDO::ERROR_SILENT ->PDO sets an error code
// 2. ERRMODE_WARNING   -> set an error code and warning message
// 3. PDO::ERRMODE_EXCEPTION -> error  and exception
// To set the error handling strategy, you can pass an associative array 

// there are two ways to set the error modes 
//to the PDO constructor like this:
$pdo = new PDO($dsn, $user, $password, [PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION]);

//Or you can use the setAttribute() method of the PDO instance:
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);