Horde_ActiveSync_Wbxml_Decoder::_getStringTable PHP 메소드

_getStringTable() 보호된 메소드

Fetch the string table. Don't think we use the results anywhere though.
protected _getStringTable ( ) : string
리턴 string The string table.
    protected function _getStringTable()
    {
        $stringtable = '';
        $length = $this->_getMBUInt();
        if ($length > 0) {
            $stringtable = $this->_stream->substring(0, $length);
        }
        return $stringtable;
    }