php中word/doc转html

第一步:安装 PhpOffice\PhpWord

github地址:https://github.com/PHPOffice/PHPWord/

这里仅支持composer安装,

第二步:引入PhpWord


$path = './file.doc';//文件路径
$path2 = './test_doc_html.html';//存放的路径

include_once(ROOT_PATH.'vendor/autoload.php');//ROOT_PATH 这是项目根目录 这个位置看你自己的
$phpWord = \PhpOffice\PhpWord\IOFactory::load($path);
$xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, "HTML");
$xmlWriter->save($path2);

 

你可能感兴趣的:(php,PhpWord,PhpWord)