首頁 > php教程 > PHP源码 > 主體

简单的SESSION管理类

PHP中文网
發布: 2016-05-23 16:40:15
原創
1366 人瀏覽過

php代码:

<?php
/**
 * Created by PhpStorm.
 * User: zerodeng
 * Date: 15-5-12
 * Time: 下午3:09
 */

class session {
    const SESSION_STARTED = TRUE;
    const SESSION_NOT_STARTED = FALSE;

    private $session_state = self::SESSION_NOT_STARTED;
    private static $instance;

    public static function get_instance(){
        if(!isset(self::$instance)){
            self::$instance = new self;
        }

        self::$instance->start_session();
        return self::$instance;
    }

    public function start_session(){
        if($this->session_state == self::SESSION_NOT_STARTED){
            $this->session_state = session_start();
        }
        return $this->session_state;
    }

    public function __set($name,$value){
        $_SESSION[$name] = $value;
    }

    public function __get($name){
        if(isset($_SESSION[$name])){
            return $_SESSION[$name];
        }
    }

    public function __isset($name){
        return isset($_SESSION[$name]);
    }

    public function __unsset($name){
        unset($_SESSION[$name]);
    }

    public function destroy(){
        if($this->session_state == self::SESSION_STARTED){
            $this->session_state = !session_destroy();
            unset($_SESSION);
            return !$this->session_state;
        }

        return false;
    }
}
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板