當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Authentication::session_start方法代碼示例

本文整理匯總了PHP中Authentication::session_start方法的典型用法代碼示例。如果您正苦於以下問題:PHP Authentication::session_start方法的具體用法?PHP Authentication::session_start怎麽用?PHP Authentication::session_start使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Authentication的用法示例。


在下文中一共展示了Authentication::session_start方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: logout

 static function logout()
 {
     Authentication::session_start();
     session_unset();
     session_destroy();
     setcookie("Justitia", "", time() - 3600, "/");
 }
開發者ID:jlsa,項目名稱:justitia,代碼行數:7,代碼來源:Authentication.php

示例2: write

    function write()
    {
        Authentication::session_start();
        // we need the current user later
        $base = htmlspecialchars(Util::base_url());
        $title = htmlspecialchars($this->title());
        header('Content-Type: text/html; charset=UTF-8');
        ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
  <head>
    <title><?php 
        echo $title;
        ?>
 - <?php 
        echo $this->app_name();
        ?>
</title>
    <link rel="stylesheet" type="text/css" href="<?php 
        echo $base;
        ?>
style/style.css">
    <link rel="stylesheet" type="text/css" href="<?php 
        echo $base;
        ?>
style/jquery.autocomplete.css">
    <link rel="shortcut icon" href="<?php 
        echo $base;
        ?>
style/favicon.png">
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="<?php 
        echo $base;
        ?>
style/jquery.autocomplete.js"></script>
    <script type="text/javascript" src="<?php 
        echo $base;
        ?>
style/script.js"></script>
    <base href="<?php 
        echo $base;
        ?>
">
  </head>
  <body<?php 
        if ($this->is_admin_page) {
            echo ' class="admin"';
        }
        ?>
>
    <div id="header">
      <div id="appname"><?php 
        echo $this->app_name();
        ?>
, <small>Programming Judge</small></div>
      <?php 
        $this->write_user_header();
        ?>
    </div>
    <div id="tabbar">
      <?php 
        $this->write_tabbar();
        ?>
    </div>
    <div id="nav-wrap">
      <?php 
        $this->write_nav();
        ?>
    </div>
    <div id="main">
      <h1><?php 
        echo $title;
        ?>
</h1>
      <?php 
        $this->write_rejudge_all();
        ?>
      <?php 
        $this->write_body();
        ?>
    </div>
  </body>
</html>
<?php 
    }
開發者ID:jlsa,項目名稱:justitia,代碼行數:85,代碼來源:Template.php

示例3: start_session

 private static function start_session()
 {
     Authentication::session_start();
     if (!isset($_SESSION['usergroup'])) {
         // not set, initialize
         $_SESSION['usergroup'] = array();
     }
 }
開發者ID:jlsa,項目名稱:justitia,代碼行數:8,代碼來源:UserGroup.php


注:本文中的Authentication::session_start方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。