API Documentation

Session/Abstract.php

Classes 
category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Session
since
Preview Release 0.2
version
$Id: Abstract.php 20096 2010-01-06 02:05:09Z bkarwin $
Classes
Zend_Session_Abstract

Description

Zend Framework

LICENSE

This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.

Zend_Session_Abstract

category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Session
Constants
_THROW_NOT_WRITABLE_MSG
_THROW_NOT_READABLE_MSG
Properties
$_writable
$_readable
$_expiringData
Methods
_namespaceIsset
_namespaceUnset
_namespaceGet
_namespaceGetAll

Description

Zend_Session_Abstract

Constants

_THROW_NOT_WRITABLE_MSG

 _THROW_NOT_WRITABLE_MSG = 'Zend_Session is currently marked as read-only.'

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

Details

value
Zend_Session is currently marked as read-only.

_THROW_NOT_READABLE_MSG

 _THROW_NOT_READABLE_MSG = 'Zend_Session is not marked as readable.'

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

Details

value
Zend_Session is not marked as readable.

Properties

$_expiringData

array $_expiringData = 'array'

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

Details

$_expiringData
array
visibility
protected
default
array
final
false
static
true

$_readable

bool $_readable = 'false'

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

Details

$_readable
bool
visibility
protected
default
false
final
false
static
true

$_writable

bool $_writable = 'false'

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

Details

$_writable
bool
visibility
protected
default
false
final
false
static
true

Methods

_namespaceGet

_namespaceGet( string $namespace, string $name = null ) : mixed

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

Arguments
$namespace
string
$name
string
Output
mixed
Details
visibility
protected
final
false
static
true

_namespaceGetAll

_namespaceGetAll( string $namespace ) : mixed

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

Arguments
$namespace
string
Output
mixed
Details
visibility
protected
final
false
static
true

_namespaceIsset

_namespaceIsset( string $namespace, string $name = null ) : bool

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

Arguments
$namespace
string
$name
string
Output
bool
Details
visibility
protected
final
false
static
true

_namespaceUnset

_namespaceUnset( string $namespace, string $name = null ) : void

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

Arguments
$namespace
string
$name
string
Details
visibility
protected
final
false
static
true
throws
Documentation was generated by DocBlox.