/**
  * 析构函数
  *
  * @access public
  * @return boolean
  */
 public function __destruct()
 {
     if ($this->_Memcached) {
         $this->_Memcached->quit();
     }
     return true;
 }
Exemplo n.º 2
0
 /**
  * 析构函数
  *
  * @access public
  * @return boolean
  */
 public function __destruct()
 {
     if ($this->_dbLink) {
         $this->_dbLink->close();
     }
     return true;
 }
Exemplo n.º 3
0
 /**
  * 析构函数
  *
  * @access public
  * @return boolean
  */
 public function __destruct()
 {
     if ($this->_Memcache) {
         $this->_Memcache->close();
     }
     return true;
 }