Skip to content

Instantly share code, notes, and snippets.

@sunil-bagde
Created October 17, 2018 19:16
Show Gist options
  • Save sunil-bagde/f16631d3d13091158d5adedbedd4aeed to your computer and use it in GitHub Desktop.
Save sunil-bagde/f16631d3d13091158d5adedbedd4aeed to your computer and use it in GitHub Desktop.
```php
// https://github.com/PHPOffice
// https://github.com/mtibben/html2text
$phpWord = \PhpOffice\PhpWord\IOFactory::load(public_path('Sample_11_ReadWord97.doc'), 'MsDoc');
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'HTML');
$html = new \Html2Text\Html2Text($objWriter->getContent() );
var_dump( $html->getText());
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment