php word转pdf php word转pdf

php word转pdf

需要安装libreoffice

$pdfPath = './pdf';//pdf文件保存的目录

$pdfHomePath = '/var/www/html/ceshi/pdf';//项目目录或项目中pdf保存的目录
$doc_path = './bbb.doc';//word文件地址
if(!is_dir($pdfPath)){
    mkdir($pdfPath,0777,true); 
}

exec("export HOME={$pdfHomePath} && libreoffice --headless --invisible --convert-to pdf:writer_pdf_Export {$doc_path} --outdir {$pdfPath}");

会生成和word文件同名的pdf文件

https://blog.csdn.net/li_mancheng/article/details/74172010

需要安装libreoffice

$pdfPath = './pdf';//pdf文件保存的目录

$pdfHomePath = '/var/www/html/ceshi/pdf';//项目目录或项目中pdf保存的目录
$doc_path = './bbb.doc';//word文件地址
if(!is_dir($pdfPath)){
    mkdir($pdfPath,0777,true); 
}

exec("export HOME={$pdfHomePath} && libreoffice --headless --invisible --convert-to pdf:writer_pdf_Export {$doc_path} --outdir {$pdfPath}");

会生成和word文件同名的pdf文件

https://blog.csdn.net/li_mancheng/article/details/74172010

猜你喜欢

转载自blog.csdn.net/txj236/article/details/81058348