mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-26 16:01:05 +00:00
67 lines
1.3 KiB
PHP
67 lines
1.3 KiB
PHP
<?php
|
|
|
|
final class session
|
|
{
|
|
protected static $_instance = null;
|
|
|
|
protected function __construct()
|
|
{
|
|
ini_set('session.gc_probability', App::instance()->config['session']['gc_probability']);
|
|
ini_set('session.gc_divisor', 100);
|
|
ini_set('session.gc_maxlifetime', App::instance()->config['session']['lifetime']);
|
|
|
|
session_name(App::instance()->config['session']['name']);
|
|
session_start();
|
|
}
|
|
|
|
public static function instance()
|
|
{
|
|
if (!isset(self::$_instance)) {
|
|
self::$_instance = new self;
|
|
}
|
|
|
|
return self::$_instance;
|
|
}
|
|
|
|
public function set($key, $value)
|
|
{
|
|
$_SESSION[$key] = $value;
|
|
|
|
session_write_close();
|
|
}
|
|
|
|
public function get($key, $default = null)
|
|
{
|
|
return isset($_SESSION[$key]) ? $_SESSION[$key] : $default;
|
|
}
|
|
|
|
public function get_once($key, $default = null)
|
|
{
|
|
$result = $this->get($key, $default);
|
|
|
|
unset($_SESSION[$key]);
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function del($key)
|
|
{
|
|
unset($_SESSION[$key]);
|
|
}
|
|
|
|
public function has($key)
|
|
{
|
|
return isset($_SESSION[$key]);
|
|
}
|
|
|
|
public function __set($key, $value)
|
|
{
|
|
$this->set($key, $value);
|
|
}
|
|
|
|
public function __get($key)
|
|
{
|
|
return $this->get($key);
|
|
}
|
|
}
|