本文整理汇总了PHP中Utilisateur::logoutIfRequested方法的典型用法代码示例。如果您正苦于以下问题:PHP Utilisateur::logoutIfRequested方法的具体用法?PHP Utilisateur::logoutIfRequested怎么用?PHP Utilisateur::logoutIfRequested使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Utilisateur
的用法示例。
在下文中一共展示了Utilisateur::logoutIfRequested方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: catch
<?php
require_once 'class/utilisateur.class.php';
//Varibale commune
$user = null;
if (!Utilisateur::isConnected()) {
include "authCas.inc.php";
}
try {
$user = Utilisateur::createFromSession();
} catch (Exception $e) {
echo $e->getMessage();
exit;
}
if (isset($_REQUEST['logout'])) {
if (isset($_SESSION['phpCAS'])) {
require_once "CAS-1.3.4/CAS.php";
require_once "config.php";
// Enable debugging
phpCAS::setDebug();
// Initialize phpCAS
phpCAS::client(CAS_VERSION_2_0, $cas_host, $cas_port, $cas_context, false);
// no SSL validation for the CAS server
phpCAS::setNoCasServerValidation();
phpCAS::logoutWithRedirectService("http://localhost/www/GestionnaireStage/index.php");
} else {
Utilisateur::logoutIfRequested();
header("Location: index.php");
exit;
}
}