Horde_ActiveSync_Wbxml_Encoder::_outTermStr PHP Method

_outTermStr() private method

Output a string along with the terminator.
private _outTermStr ( mixed $content )
$content mixed A string or a stream resource.
    private function _outTermStr($content)
    {
        if (is_resource($content)) {
            rewind($content);
        }
        $this->_stream->add($content);
        $this->_stream->add(chr(0));
    }