$_stream
$_stream : string
Iterate at a binary level through the AMF response
OutputStream extends BinaryStream as eventually BinaryStream could be placed outside of Zend_Amf in order to allow other packages to use the class.
writeBytes(string $bytes) : \Zend_Amf_Util_BinaryStream
Write any length of bytes to the stream
Usually a string.
string | $bytes |
writeByte(string $stream) : \Zend_Amf_Util_BinaryStream
Writes the passed string into a signed byte on the stream.
string | $stream |
writeInt(integer $stream) : \Zend_Amf_Util_BinaryStream
Write an the integer to the output stream as a 32 bit signed integer
integer | $stream |
writeUtf(string $stream) : \Zend_Amf_Util_BinaryStream
Wite a UTF-8 string to the outputstream
string | $stream |
writeLongUtf(string $stream) : \Zend_Amf_Util_BinaryStream
Write a long UTF string to the buffer
string | $stream |
writeLong(integer|string $stream) : \Zend_Amf_Util_BinaryStream
Write long numeric value to output stream
integer|string | $stream |
writeDouble(string|double $stream) : \Zend_Amf_Util_BinaryStream
Writes an IEEE 754 double-precision floating point number from the data stream.
string|double | $stream |