PHPWord horizontal line (<hr />)

HansElsen picture HansElsen · Nov 16, 2013 · Viewed 11.6k times · Source

I am currently using PHPWord to generate my documents, but I want to add an horizontal line in the document. Just like an


in HMTL. In word you can do this by typing three underscores en enter, but I want to use it in my generated document.

Does anybody have more information about this feature?

Thank you!

Answer

Dragon picture Dragon · Mar 14, 2018

I decompressed the '.docx' file, found closest xml tag is 'w:pBdr'.

<w:pBdr><w:bottom w:val="single" w:sz="6" w:space="0" w:color="auto"/></w:pBdr>

So, I insert a horizontal line by ParagraphStyle.

$section->addText('', [], ['borderBottomSize' => 6]);