PHPRtfLite::getInfoPart PHP 메소드

getInfoPart() 보호된 메소드

gets rtf info part
protected getInfoPart ( ) : string
리턴 string
    protected function getInfoPart()
    {
        $part = '{\\info' . "\r\n";
        foreach ($this->_properties as $key => $value) {
            $value = PHPRtfLite_Utf8::getUnicodeEntities($value, $this->_charset);
            $part .= '{\\' . $key . ' ' . $value . '}' . "\r\n";
        }
        $part .= '}' . "\r\n";
        return $part;
    }