pdf转word
需要先安装libreoffice
tar -zxvf LibreOffice_7.6.4_Linux_x86-64_rpm.tar.gz 解压,deb同理
cd LibreOffice_7.6.4_Linux_x86-64_rpm.tar.gz
cd RMPS 进入编译后目录
sudo rpm -i ./*rpm 如果是deb包则是dkpg,没差
composer require phpoffice/phpword
composer require tecnickcom/tcpdf
以下为代码
$file = Request::file('file');
//判师文件是否上传成功
if($file){
//生成随机文件名
$filename = unigid().'.docx”;
//转换成word文档
$phpword = new Phpword();
$pdf = IoFactory::load($file->getRealPath(),'PDF');
$pdf->save($filename);
//保存word到服务器上
$phpword->save($filename);
上一篇:php一段用于加解密的公共函数