本文整理匯總了PHP中Connexion::getPDO方法的典型用法代碼示例。如果您正苦於以下問題:PHP Connexion::getPDO方法的具體用法?PHP Connexion::getPDO怎麽用?PHP Connexion::getPDO使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Connexion
的用法示例。
在下文中一共展示了Connexion::getPDO方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: header
}
if (isset($_GET['page'])) {
$page = $_GET['page'];
if (!isset($routing[$page])) {
$page = '404';
}
} else {
$page = 'accueil';
}
if ($routing[$page]['secure'] === true && !isset($_SESSION['user'])) {
header("Location: ?page=connexion");
exit;
}
$user = new User(Connexion::getPDO());
$abo = new Subscription(Connexion::getPDO());
$panier = new Basket(Connexion::getPDO());
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title><?php
echo ucwords($page);
?>
| Trottilib</title>
<meta name="author" content="AwH" />
<meta name="keywords" content="Mot, clefs" />
<meta name="description" content="description de la page" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./static/css/bootstrap.min.css" />
<link rel="stylesheet" href="./static/css/bootstrap-theme.min.css" />