首选安装组件:
composer require ncjoes/office-converter
引入组件:
use NcJoes\OfficeConverter\OfficeConverter;
示例代码:
<?php
// if you are using composer, just
use NcJoes\OfficeConverter\OfficeConverter;
$converter=newOfficeConverter('test-file.docx');
$converter->convertTo('output-file.pdf'); //在转换文件同目录生产pdf文件
$converter->convertTo('output-file.html'); //在转换文件同目录生产html文件
//需要指定目录参考下面使用,添加生产文件目录参数
$converter=newOfficeConverter('test-file.docx','path-to-outdir');
?>
网友评论