Horde_SessionHandler_Storage::close PHP Method

close() abstract public method

Close the backend.
abstract public close ( )
    public abstract function close();

Usage Example

示例#1
0
 /**
  * Close the backend.
  *
  * @return boolean  True on success, false otherwise.
  */
 public function close()
 {
     try {
         $this->_storage->close();
     } catch (Horde_SessionHandler_Exception $e) {
         $this->_logger->log($e, 'ERR');
     }
     $this->_connected = false;
     return true;
 }