library docx-to-html
composer integration of xylude/Docx-to-HTML
nadirhamid/docx-to-html
composer integration of xylude/Docx-to-HTML
- Tuesday, November 7, 2017
- by infinitet3ch
- Repository
- 1 Watchers
- 1 Stars
- 82 Installations
- HTML
- 1 Dependents
- 0 Suggesters
- 6 Forks
- 0 Open issues
- 2 Versions
- 356 % Grown
Docx-to-HTML
Converts .docx files to HTML, (*1)
This is a PHP class that will convert your .docx files to HTML. It is by far not perfect, but will handle most things decently., (*2)
This class requires the following:, (*3)
Composer install
composer require nadirhamid/docx-to-html
How to use
include('./docx_reader.php');
$doc = new Docx_reader();
$doc->setFile('./sample.docx');
if(!$doc->get_errors()) {
$html = $doc->to_html();
$plain_text = $doc->to_plain_text();
echo $html;
} else {
echo implode(', ',$doc->get_errors());
}
echo "\n";