Ejemplo n.º 1
0
 /**
  * セッション変数消去
  *
  * @param string $key セッションキー
  *
  * @return void
  */
 public function unregister($key)
 {
     $this->_start();
     HTTP_Session2::unregister($this->_config['prefix'] . $key);
     $this->_log->log('Session[DEL]', array('name' => $key));
 }