Horde_ActiveSync_Wbxml_Decoder::_ungetElement PHP 메소드

_ungetElement() 공개 메소드

Unget the specified element from the stream. Places the element into the unget buffer.
public _ungetElement ( array $element ) : void
$element array The element array to unget.
리턴 void
    public function _ungetElement($element)
    {
        if ($this->_ungetbuffer) {
            $this->_logger->err('Double unget!');
        }
        $this->_ungetbuffer = $element;
    }