php - PHPWord bracket causes rendered Word document to be un-openable - Stack Overflow

admin2025-04-16  5

Using PHPWord, I've managed with this line:

$section->addText('<');

to provoke an Error in Microsoft Word opening the .docx file:

+---------------------------------------------------------------+
| Microsoft Office Word                                     ? X |
+---------------------------------------------------------------+
| The file BrynergyTest.docx cannot be opened because there are |
| problems with the contents.                                   |
|                                        [ OK ] [ Details >>> ] |
+---------------------------------------------------------------+

Other symbols, such as:

$section->addText('t');

work fine.

I expected the result to have the Word XML file with the contents of the less-than-sign "<" (U+003C LESS-THAN SIGN).

Using PHPWord, I've managed with this line:

$section->addText('<');

to provoke an Error in Microsoft Word opening the .docx file:

+---------------------------------------------------------------+
| Microsoft Office Word                                     ? X |
+---------------------------------------------------------------+
| The file BrynergyTest.docx cannot be opened because there are |
| problems with the contents.                                   |
|                                        [ OK ] [ Details >>> ] |
+---------------------------------------------------------------+

Other symbols, such as:

$section->addText('t');

work fine.

I expected the result to have the Word XML file with the contents of the less-than-sign "<" (U+003C LESS-THAN SIGN).

Share Improve this question edited Feb 3 at 23:27 hakre 199k55 gold badges450 silver badges856 bronze badges Recognized by PHP Collective asked Feb 3 at 12:54 CymroCymro 1,4582 gold badges12 silver badges35 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

I found this answer:

\PhpOffice\PhpWord\Settings::setOutputEscapingEnabled(true);
转载请注明原文地址:http://anycun.com/QandA/1744770702a87386.html