Abstract Class Zend_Session_Abstract

Description

Zend_Session_Abstract

  • copyright: Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  • abstract:
  • license: New BSD License

Located in /Session/Abstract.php (line 33)


	
			
Direct descendents
Class Description
 class Zend_Session_Namespace Zend_Session_Namespace
 class Zend_Session Zend_Session
Class Constant Summary
 _THROW_NOT_READABLE_MSG = 'Zend_Session is not marked as readable.'
 _THROW_NOT_WRITABLE_MSG = 'Zend_Session is currently marked as read-only.'
Variable Summary
 static array $_expiringData
 static bool $_readable
 static bool $_writable
Method Summary
 static mixed &_namespaceGet (string $namespace, [string $name = null])
 static mixed _namespaceGetAll (string $namespace, string $name)
 static bool _namespaceIsset (string $namespace, [string $name = null])
 static void _namespaceUnset (string $namespace, [string $name = null])
Variables
static array $_expiringData = array() (line 55)

Since expiring data is handled at startup to avoid __destruct difficulties, the data that will be expiring at end of this request is held here

  • access: protected
static bool $_readable = false (line 47)

Whether or not session permits reading (reading data in $_SESSION[])

  • access: protected
static bool $_writable = false (line 40)

Whether or not session permits writing (modification of $_SESSION[])

  • access: protected
Methods
static _namespaceGet (line 140)

namespaceGet() - Get $name variable from $namespace, returning by reference.

  • access: protected
static mixed &_namespaceGet (string $namespace, [string $name = null])
  • string $namespace
  • string $name
static _namespaceGetAll (line 177)

namespaceGetAll() - Get an array containing $namespace, including expiring data.

  • access: protected
static mixed _namespaceGetAll (string $namespace, string $name)
  • string $namespace
  • string $name
static _namespaceIsset (line 79)

namespaceIsset() - check to see if a namespace or a variable within a namespace is set

  • access: protected
static bool _namespaceIsset (string $namespace, [string $name = null])
  • string $namespace
  • string $name
static _namespaceUnset (line 105)

namespaceUnset() - unset a namespace or a variable within a namespace

  • throws: Zend_Session_Exception
  • access: protected
static void _namespaceUnset (string $namespace, [string $name = null])
  • string $namespace
  • string $name
Class Constants
_THROW_NOT_READABLE_MSG = 'Zend_Session is not marked as readable.' (line 69)

Error message thrown when an action requires reading session data, but current Zend_Session is not marked as readable.

_THROW_NOT_WRITABLE_MSG = 'Zend_Session is currently marked as read-only.' (line 62)

Error message thrown when an action requires modification, but current Zend_Session has been marked as read-only.

Documentation generated on Mon, 21 Jun 2010 15:05:04 -0400 by phpDocumentor 1.4.3