$_stream
$_stream : \Zend_Amf_Parse_InputStream
The raw string that represents the AMF request.
Read an AMF3 input stream and convert it into PHP data types.
Logic for deserialization of the AMF envelop is based on resources supplied by Adobe Blaze DS. For and example of deserialization please review the BlazeDS source tree.
$_stream : \Zend_Amf_Parse_InputStream
The raw string that represents the AMF request.
__construct(\Zend_Amf_Parse_InputStream $stream) : void
Constructor
\Zend_Amf_Parse_InputStream | $stream |
readTypeMarker(integer $typeMarker = null) : mixed
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 |
for unidentified marker type
Whatever the corresponding PHP data type is
readInteger() : integer|float
Read and deserialize an integer
AMF 3 represents smaller integers with fewer bytes using the most significant bit of each byte. The worst case uses 32-bits to represent a 29-bit number, which is what we would have done with no compression.
0x04 -> integer type code, followed by up to 4 bytes of data.
Parsing integers on OSFlash for the AMF3 integer data format:
readString() : String
Read and deserialize a string
Strings can be sent as a reference to a previously occurring String by using an index to the implicit string reference table. Strings are encoding using UTF-8 - however the header may either describe a string literal or a string reference.
readDate() : \Zend_Date
Read and deserialize a date
Data is the number of milliseconds elapsed since the epoch of midnight, 1st Jan 1970 in the UTC time zone. Local time zone information is not sent to flash.