PHPWord: Spaces Treated as Line Breaks Issue

28 Views Asked by At

I'm facing an issue with PHPWord while reading Word documents (.docx). It appears that spaces are occasionally treated as line breaks, causing unexpected formatting. I've reviewed both my code and the document, but the problem persists.

$fileDoc = $request->file('template');
$docObject = IOFactory::createReader('Word2007')->load($fileDoc);
0

There are 0 best solutions below