|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为函数实在是太多了,慢慢的你就会知道,知道有这个函数就可以。cache|session 我没事的时分写的自立完成Session功效的类,基于文件体例存储Session数据,测试根基经由过程,还对照好玩,实践使用没成心义,只不外是进修Session是若何完成的。
利用基于文件的Session存取瓶颈能够都是在磁盘IO操作上,所以凑合小数据量的Session没有成绩,然而假如碰着大数据量的Sesstion,那末能够没法胜任,如今使用Memcache来保留Session数据,直接经由过程内存的体例,效力天然可以进步很多,而且假如联合PHP的Memcache扩大,可以撑持散布式的Memcache办事器,那末这特性能就可以够提到更高,负载更多更庞杂的使用。
申明:以下代码基于Memcache来保留Session数据,客户端必需装置有PHP的Memcache扩大,不然没法运转,同时本代码没有经由严厉测试,只是作为进修代码。
<?php
//===========================================
// 法式:Memcache-Based Session Class
// 功效:基于Memcache存储的 Session 功效类
// 作者: heiyeluren
// 博客: http://blog.csdn.net/heiyeshuwu
// 工夫: 2006-12-23
//===========================================
/**
* 类名: FileSession Class
* 功效: 自立完成基于Memcache存储的 Session 功效
* 描写: 这个类就是完成Session的功效, 根基上是经由过程设置客户真个Cookie来保留SessionID,
* 然后把用户的数据保留在办事器端,最初经由过程Cookie中的Session Id来肯定一个数据是不是是用户的,
* 然落后行响应的数据操作, 今朝的弱点是没有渣滓搜集功效
*
* 本体例合适Memcache内存体例存储Session数据的体例,同时假如构建散布式的Memcache办事器,
* 可以保留相当多缓存数据,而且合适用户量对照多并发对照大的情形
* 注重: 本类必需请求PHP装置了Memcache扩大, 获得Memcache扩大请会见: http://pecl.php.net
*/
class MemcacheSession
{
var $sessId = '';
var $sessKeyPrefix = 'sess_';
var $sessExpireTime = 86400;
var $cookieName = '__SessHandler';
var $cookieExpireTime = '';
var $memConfig = array('host'=>'192.168.0.200', 'port'=>11211);
var $memObject = null;
/**
* 机关函数
*
* @param bool $isInit - 是不是实例化对象的时分启动Session
*/
function MemcacheSession($isInit = false){
if ($isInit){
$this->start();
}
}
//-------------------------
// 内部办法
//-------------------------
/**
* 启动Session操作
*
* @param int $expireTime - Session生效工夫,缺省是0,当阅读器封闭的时分生效, 该值单元是秒
*/
function start($expireTime = 0){
$sessId = $_COOKIE[$this->cookieName];
if (!$sessId){
$this->sessId = $this->_getId();
$this->cookieExpireTime = ($expireTime > 0) ? time() + $expireTime : 0;
setcookie($this->cookieName, $this->sessId, $this->cookieExpireTime, "/", '');
$this->_initMemcacheObj();
$_SESSION = array();
$this->_saveSession();
} else {
$this->sessId = $sessId;
$_SESSION = $this->_getSession($sessId);
}
}
/**
* 判别某个Session变量是不是注册
*
* @param string $varName -
* @return bool 存在前往true, 不存在前往false
*/
function is_registered($varName){
if (!isset($_SESSION[$varName])){
return false;
}
return true;
}
/**
* 注册一个Session变量
*
* @param string $varName - 需求注册成Session的变量名
* @param mixed $varValue - 注册成Session变量的值
* @return bool - 该变量名已存在前往false, 注册胜利前往true
*/
function register($varName, $varValue){
if (isset($_SESSION[$varName])){
return false;
}
$_SESSION[$varName] = $varValue;
$this->_saveSession();
return true;
}
/**
* 烧毁一个已注册的Session变量
*
* @param string $varName - 需求烧毁的Session变量名
* @return bool 烧毁胜利前往true
*/
function unregister($varName){
unset($_SESSION[$varName]);
$this->_saveSession();
return true;
}
/**
* 烧毁一切已注册的Session变量
*
* @return 烧毁胜利前往true
*/
function destroy(){
$_SESSION = array();
$this->_saveSession();
return true;
}
/**
* 获得一个已注册的Session变量值
*
* @param string $varName - Session变量的称号
* @return mixed - 不存在的变量前往false, 存在变量前往变量值
*/
function get($varName){
if (!isset($_SESSION[$varName])){
return false;
}
return $_SESSION[$varName];
}
/**
* 获得一切Session变量
*
* @return array - 前往一切已注册的Session变量值
*/
function getAll(){
return $_SESSION;
}
/**
* 获得以后的Session ID
*
* @return string 获得的SessionID
*/
function getSid(){
return $this->sessId;
}
/**
* 获得Memcache的设置装备摆设信息
*
* @return array Memcache设置装备摆设数组信息
*/
function getMemConfig(){
return $this->memConfig;
}
/**
* 设置Memcache的设置装备摆设信息
*
* @param string $host - Memcache办事器的IP
* @param int $port - Memcache办事器的端口
*/
function setMemConfig($host, $port){
$this->memConfig = array('host'=>$host, 'port'=>$port);
}
//-------------------------
// 外部接口
//-------------------------
/**
* 生成一个Session ID
*
* @return string 前往一个32位的Session ID
*/
function _getId(){
return md5(uniqid(microtime()));
}
/**
* 获得一个保留在Memcache的Session Key
*
* @param string $sessId - 是不是指定Session ID
* @return string 获得到的Session Key
*/
function _getSessKey($sessId = ''){
$sessKey = ($sessId == '') ? $this->sessKeyPrefix.$this->sessId : $this->sessKeyPrefix.$sessId;
return $sessKey;
}
/**
* 反省保留Session数据的途径是不是存在
*
* @return bool 胜利前往true
*/
function _initMemcacheObj(){
if (!class_exists('Memcache') || !function_exists('memcache_connect')){
$this->_showMessage('Failed: Memcache extension not install, please from http://pecl.php.net download and install');
}
if ($this->memObject && is_object($this->memObject)){
return true;
}
$mem = new Memcache;
if (!@$mem->connect($this->memConfig['host'], $this->memConfig['port'])){
$this->_showMessage('Failed: Connect memcache host '. $this->memConfig['host'] .':'. $this->memConfig['port'] .' failed');
}
$this->memObject = $mem;
return true;
}
/**
* 获得Session文件中的数据
*
* @param string $sessId - 需求获得Session数据的SessionId
* @return unknown
*/
function _getSession($sessId = ''){
$this->_initMemcacheObj();
$sessKey = $this->_getSessKey($sessId);
$sessData = $this->memObject->get($sessKey);
if (!is_array($sessData) || empty($sessData)){
$this->_showMessage('Failed: Session ID '. $sessKey .' session data not exists');
}
return $sessData;
}
/**
* 把以后的Session数据保留到Memcache
*
* @param string $sessId - Session ID
* @return 胜利前往true
*/
function _saveSession($sessId = ''){
$this->_initMemcacheObj();
$sessKey = $this->_getSessKey($sessId);
if (empty($_SESSION)){
$ret = @$this->memObject->set($sessKey, $_SESSION, false, $this->sessExpireTime);
}else{
$ret = @$this->memObject->replace($sessKey, $_SESSION, false, $this->sessExpireTime);
}
if (!$ret){
$this->_showMessage('Failed: Save sessiont data failed, please check memcache server');
}
return true;
}
/**
* 显示提醒信息
*
* @param string $strMessage - 需求显示的信息内容
* @param bool $isFailed - 是不是是掉败信息, 缺省是true
*/
function _showMessage($strMessage, $isFailed = true){
if ($isFailed){
exit($strMessage);
}
echo $strMessage;
}
}
?>
看到好的帖子最好up一下,以使得更多的人得到分享。 |
|