Exemplo n.º 1
0
 /**
  * __unset() - unset a variable in this objects namespace.
  *
  * @param string $name - programmatic name of a key, in a <key,value> pair in the current namespace
  * @return true
  */
 protected function __unset($name)
 {
     if ($name === '') {
         throw new Zend_Session_Exception("The '{$name}' key must be a non-empty string");
     }
     return $this->_sessionCore->namespaceUnset($this->_namespace, $name);
 }
Exemplo n.º 2
0
 /**
  * __unset() - unset a variable in this objects namespace.
  *
  * @param string $name - programmatic name of a key, in a <key,value> pair in the current namespace
  * @return true
  */
 protected function __unset($name)
 {
     if ($name === '') {
         throw Zend::exception('Zend_Session_Exception', __CLASS__ . "::__unset() the '{$name}' key must be a non-empty string");
     }
     return $this->_sessionCore->namespaceUnset($this->_namespace, $name);
 }
Exemplo n.º 3
0
 /**
  * __unset() - unset a variable in this objects namespace.
  *
  * @param string $name
  * @return true
  */
 public function __unset($name)
 {
     return $this->_session_core->namespaceUnset($this->_namespace, $name);
 }