Zend Framework
1.12
|
Static Public Member Functions | |
static | factory ($adapterName, $opts=array()) |
Create a serializer adapter instance. | |
static | getAdapterLoader () |
Get the adapter plugin loader. | |
static | setAdapterLoader (Zend_Loader_PluginLoader $pluginLoader) |
Change the adapter plugin load. | |
static | resetAdapterLoader () |
Resets the internal adapter plugin loader. | |
static | setDefaultAdapter ($adapter, $options=array()) |
Change the default adapter. | |
static | getDefaultAdapter () |
Get the default adapter. | |
static | serialize ($value, array $options=array()) |
Generates a storable representation of a value using the default adapter. | |
static | unserialize ($serialized, array $options=array()) |
Creates a PHP value from a stored representation using the default adapter. | |
Static Protected Member Functions | |
static | _getDefaultAdapterLoader () |
Returns a default adapter plugin loader. | |
Static Protected Attributes | |
static | $_defaultAdapter = 'PhpSerialize' |
|
staticprotected |
Returns a default adapter plugin loader.
|
static |
Create a serializer adapter instance.
string | Zend_Serializer_Adapter_AdapterInterface | $adapterName | Name of the adapter class |
array | Zend_Config | $opts | Serializer options |
|
static |
Get the adapter plugin loader.
|
static |
Get the default adapter.
|
static |
Resets the internal adapter plugin loader.
|
static |
Generates a storable representation of a value using the default adapter.
mixed | $value | |
array | $options |
Zend_Serializer_Exception |
|
static |
|
static |
Change the default adapter.
string | Zend_Serializer_Adapter_AdapterInterface | $adapter | |
array | Zend_Config | $options |
|
static |
Creates a PHP value from a stored representation using the default adapter.
string | $serialized | |
array | $options |
Zend_Serializer_Exception |
|
staticprotected |