たとえば、trycatchブロックを使用している場合:
try{
require_once('../php/connect.php');
$dbh = db::getInstance();
// What i am trying to understand should i close the connection here before the header?
header("Location: x.php");
}
} catch(PDOException $e){
require_once('err.php');
}
$dbh = null; // Or should i close the connection here?
「通訳」は「5」行目以降もありますので、よろしくお願いします。