Home  >  Article  >  php教程  >  Session保存到Memcache

Session保存到Memcache

PHP中文网
PHP中文网Original
2016-05-25 17:07:06979browse


get($sid);
	}
 
 
	function write($sid,$data){
		return self::$mem->set($sid,$data,MEMCACHE_COMPRESSED,self::$maxtime); 
	}
 
	function destroy($sid){
		return self::$mem->delete($sid);
	}
 
	function gc($maxtime){
		return true;
	}
}
$mem=new Memcache();
$mem->connect('127.0.0.1', '11211');
$session=new MS($mem);
$_SESSION['007']='www.i007xd.com';
//session_destroy();
echo $_SESSION['007'];
var_dump($mem->get('i3pa9v2usiem3svj0ga4apvbc3'));
?>

                   

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn