element; if (!$element instanceof \PhpOffice\PhpWord\Element\Link) { return; } $content = ''; if (!$this->withoutP) { $content .= '{'; } $content .= '{\field {\*\fldinst {HYPERLINK "' . $element->getTarget() . '"}}{\\fldrslt {'; $content .= String::toUnicode($element->getText()); $content .= '}}}'; if (!$this->withoutP) { $content .= '}'; } return $content; } }