日期:2014-05-17 浏览次数:20528 次
class TShare { private static $_Instance; private $memcache; private function __construct() { $this->memcache = new Memcache; $this->memcache->connect('127.0.0.1', 11211) or die ("Could not connect"); } public static function getInstance() { if(empty(self::$_Instance)) self::$_Instance = new self(); return self::$_Instance; } function __set($name, $val) { $this->memcache->set($name, $val, false, 1000); } function __get($name) { return $this->memcache->get($name); } }