Zend Framework
1.12
|
Public Member Functions | |
readTypeMarker ($typeMarker=null) | |
Read AMF markers and dispatch for deserialization. | |
readObject ($object=null) | |
Read AMF objects and convert to PHP objects. | |
readReference () | |
Read reference objects. | |
readMixedArray () | |
Reads an array with numeric and string indexes. | |
readArray () | |
Converts numerically indexed actiosncript arrays into php arrays. | |
readDate () | |
Convert AS Date to Zend_Date. | |
readXmlString () | |
Convert XML to SimpleXml If user wants DomDocument they can use dom_import_simplexml. | |
readTypedObject () | |
Read Class that is to be mapped to a server class. | |
readAmf3TypeMarker () | |
AMF3 data type encountered load AMF3 Deserializer to handle type markers. | |
getObjectEncoding () | |
Return the object encoding to check if an AMF3 object is going to be return. | |
![]() | |
__construct (Zend_Amf_Parse_InputStream $stream) | |
Constructor. | |
readTypeMarker ($markerType=null) | |
Checks for AMF marker types and calls the appropriate methods for deserializing those marker types. | |
Protected Attributes | |
$_reference = array() | |
$_objectEncoding = Zend_Amf_Constants::AMF0_OBJECT_ENCODING | |
![]() | |
$_stream | |
getObjectEncoding | ( | ) |
Return the object encoding to check if an AMF3 object is going to be return.
readAmf3TypeMarker | ( | ) |
AMF3 data type encountered load AMF3 Deserializer to handle type markers.
readArray | ( | ) |
Converts numerically indexed actiosncript arrays into php arrays.
Called when marker type is 10
readMixedArray | ( | ) |
Reads an array with numeric and string indexes.
Called when marker type is 8
readObject | ( | $object = null | ) |
Read AMF objects and convert to PHP objects.
Read the name value pair objects form the php message and convert them to a php object class.
Called when the marker type is 3.
array | null | $object |
readReference | ( | ) |
Read reference objects.
Used to gain access to the private array of reference objects. Called when marker type is 7.
Zend_Amf_Exception | for invalid reference keys |
readTypedObject | ( | ) |
Read Class that is to be mapped to a server class.
Commonly used for Value Objects on the server
Zend_Amf_Exception | if unable to load type |
readTypeMarker | ( | $typeMarker = null | ) |
Read AMF markers and dispatch for deserialization.
Checks for AMF marker types and calls the appropriate methods for deserializing those marker types. Markers are the data type of the following value.
integer | $typeMarker |
Zend_Amf_Exception | for invalid type |
readXmlString | ( | ) |
Convert XML to SimpleXml If user wants DomDocument they can use dom_import_simplexml.
|
protected |
|
protected |