Horde_ActiveSync_Wbxml_Encoder::outputWbxmlHeader PHP Method

outputWbxmlHeader() public method

Output the Wbxml header to the output stream.
public outputWbxmlHeader ( )
    public function outputWbxmlHeader()
    {
        $this->_outByte(0x3);
        // WBXML 1.3
        $this->_outMBUInt(0x1);
        // Public ID 1
        $this->_outMBUInt(106);
        // UTF-8
        $this->_outMBUInt(0x0);
        // string table length (0)
    }