Interface AdapterInterface

Summary

Fully Qualified Name: Zend\Serializer\Adapter\AdapterInterface

Description

Methods

Name Description Defined By
serialize() Generates a storable representation of a value. AdapterInterface
unserialize() Creates a PHP value from a stored representation. AdapterInterface

Method Details

serialize()

Generates a storable representation of a value.

Parameter Name Type Description
$value mixed Data

Returns: string

unserialize()

Creates a PHP value from a stored representation.

Parameter Name Type Description
$serialized string Serialized

Returns: mixed

Top