当前位置: 首页>>代码示例>>PHP>>正文


PHP DB_eSession::getSessInfo方法代码示例

本文整理汇总了PHP中DB_eSession::getSessInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP DB_eSession::getSessInfo方法的具体用法?PHP DB_eSession::getSessInfo怎么用?PHP DB_eSession::getSessInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DB_eSession的用法示例。


在下文中一共展示了DB_eSession::getSessInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: interPool

    exit;
}
// browser detection
$browser = Browser_Detection::get_browser($_SERVER['HTTP_USER_AGENT']);
$pool = new interPool();
// récupérer certaines informations de la session
$id_pool = $sess->getSessVar('id_pool', 0);
$userName = $sess->getSessVar('user', '');
$periode = $sess->getSessVar('periode', '1');
$periode_sel = $periode;
$gerant = $sess->getSessVar('gerant', '1');
$gerant_sel = $gerant;
$id_saison = $sess->getSessVar('id_saison', '0');
$poolName = $sess->getSessVar('poolName', '');
$cb_gerant_selected = $sess->getSessVar('tradecenter_cb_gerant', '');
$sess_ar = $sess->getSessInfo();
$sess_id = $sess_ar['sess_id'];
// Connexion à la bd
DB::dbConnect(strtolower($poolName));
// pour fin de compatibilité avec l'ancienne méthode de fonctionnement (jusqu'à ce que le code soit changé...)
$pool->dbConnect(strtolower($poolName));
$data = $pool->getConfigPool($id_pool, $id_saison);
$respect_position = $data["respect_position"];
$last_periode_trades = $data["last_periode_trades"];
$match_max_trade = $data["match_max_trade"];
$match_max_trade_goalie = $data["match_max_trade_goalie"];
$nhl_team_as_gerant_name = $data["nhl_team_as_gerant_name"];
$nbre_periodes = $data["nbre_periodes"];
$trade_approbation = $data["trade_approbation"];
$trade_howto_switch_players = $data["trade_howto_switch_players"];
$date_debut_saison = $data["date_debut_saison"];
开发者ID:jfanctil,项目名称:lamoria,代码行数:31,代码来源:tradecenter.php


注:本文中的DB_eSession::getSessInfo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。