本文整理汇总了PHP中DBC::closeConnection方法的典型用法代码示例。如果您正苦于以下问题:PHP DBC::closeConnection方法的具体用法?PHP DBC::closeConnection怎么用?PHP DBC::closeConnection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBC
的用法示例。
在下文中一共展示了DBC::closeConnection方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: DBC
require_once SYS_PATH . 'dbConfig.php';
$dbc = new DBC(0);
// 0 defines database id in dbConfig.php
$db = $dbc->getConnection();
$db->exec("SET CHARACTER SET utf8");
try {
$sql = "SELECT id FROM `users` WHERE `key`= ? AND `pass`= ?";
$stmt = $db->prepare($sql);
$stmt->execute(array($key, $value));
$stmt->setFetchMode(PDO::FETCH_ASSOC);
$rows = $stmt->fetchAll();
if (empty($rows)) {
header('HTTP/1.1 401 Unauthorized.', TRUE, 401);
echo 'You are not authorised to access this page.';
exit(1);
// EXIT_ERROR
}
$dbc->closeConnection();
} catch (PDOException $e) {
header('HTTP/1.1 401 Unauthorized.', TRUE, 401);
echo 'You are not authorised to access this page.';
exit(1);
// EXIT_ERROR
}
} else {
header('HTTP/1.1 401 Unauthorized.', TRUE, 401);
echo 'You are not authorised to access this page.';
exit(1);
// EXIT_ERROR
}
}