addSection(); $section->addText('"Learn from yesterday, live for today, hope for tomorrow. ' . 'The important thing is not to stop questioning." ' . '(Albert Einstein)'); $section->addText('"Great achievement is usually born of great sacrifice, ' . 'and is never the result of selfishness." '); $comment = new PhpOffice\PhpWord\Element\Comment('Authors name', new DateTime(), 'my initials'); $comment->addText('Test',array('bold' => true)); $textrun = $section->addTextRun(); $textrun->addText('This '); $text = $textrun->addText('is'); // link the comment to the text you just created $text->setCommentRangeStart($comment); $objWriter = PhpOffice\PhpWord\IOFactory::createWriter($word, 'Word2007'); $objWriter->save('helloWorld.docx');