I'm having issues creating an html file from a docx file. I'm copying the example from http://www.phpdocx.com/api-documentation/format-conversion/convert-Word-docx-into-pdf-with-PHP. My code is 100% identical, except I'm converting it to .html. This is the only difference in my code:
$docx->transformDocument('example_text.docx', 'example_text.html');
When this runs, the example_text.docx file is created as expected, but example_text.html is not.
Any ideas why this may be failing?