$_currentUri
$_currentUri :
From Binary XML Content Format Specification Version 1.3, 25 July 2001 found at http://www.wapforum.org
Copyright 2003-2017 Horde LLC (http://www.horde.org/)
See the enclosed file LICENSE for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
$_dtdManager : \Horde_Xml_Wbxml_DtdManager
The DTD Manager.
setContentHandler(\Horde_Xml_Wbxml_ContentHandler $ch)
Sets the contentHandler that will receive the output of the decoding.
\Horde_Xml_Wbxml_ContentHandler | $ch | The contentHandler |
decodeToString(string $wbxml) : string
Takes a WBXML input document and returns decoded XML.
However the preferred and more effecient method is to use decode() rather than decodeToString() and have an appropriate contentHandler deal with the decoded data.
string | $wbxml | The WBXML document to decode. |
The decoded XML document.
decode(string $wbxml)
Takes a WBXML input document and decodes it.
Decoding result is directly passed to the contentHandler. A contenthandler must be set using setContentHandler prior to invocation of this method
string | $wbxml | The WBXML document to decode. |