Implements interfaces:
Zend_Session
Located in /Zend/Session.php (line 41)
Namespace locking mechanism
Single instance namespace array to ensure data security.
Namespace - which namespace this instance of zend-session is saving-to/getting-from
Session_Core instance
unlockAll() - unmark all session/namespaces to enable read & write
__construct() - This will create an instance that saves to/gets from an
instantiated core. An optional namespace allows for saving/getting to isolated sections of the session. An optional argument $singleInstance will prevent any futured attempts of getting a Zend_Session object in the same namespace that is provided.
getIterator() - return an iteratable object for use in foreach and the like, this completes the IteratorAggregate interface
isLocked() - return lock status, true if, and only if, read-only
lock() - mark a session/namespace as readonly
setExpirationHops() - expire the namespace, or specific variables after a specified number of page hops
setExpirationSeconds() - expire the namespace, or specific variables after a specified number of seconds
unlock() - unmark a session/namespace to enable read & write
unsetAll() - unset all variables in this namespace
__get() - method to get a variable in this objects current namespace
__isset() - determine if a variable in this objects namespace is set
__set() - method to set a variable/value in this objects namespace
__unset() - unset a variable in this objects namespace.
Documentation generated on Thu, 18 Jan 2007 09:59:12 -0800 by phpDocumentor 1.3.1