我们知道,PHP语言的合理运用可以帮助我们实现导出Word文档的功能。今天我们将为大家介绍PHP处理Word转PDF的相关实现方法。#t#
创新互联建站是一家专业提供罗田企业网站建设,专注与网站建设、成都网站制作、H5场景定制、小程序制作等业务。10年已为罗田众多企业、政府机构等服务。创新互联专业网站制作公司优惠进行中。
PHP处理Word转PDF代码示例:
- < ?php
- set_time_limit(0);
- function MakePropertyValue($name,$value,$osm){
- $oStruct = $osm->Bridge_GetStruct
("com.sun.star.beans.PropertyValue"); - $oStruct->Name = $name;
- $oStruct->Value = $value;
- return $oStruct;
- }
- function word2pdf($doc_url, $output_url){
- $osm = new COM("com.sun.star.ServiceManager")
or die ("Please be sure that OpenOffice.org
is installed.\n"); - $args = array(MakePropertyValue("Hidden",true,$osm));
- $oDesktop = $osm->createInstance("com.sun.star
.frame.Desktop"); - $oWriterDoc = $oDesktop->loadComponentFromURL
($doc_url,"_blank", 0, $args); - $export_args = array(MakePropertyValue
("FilterName","writer_pdf_Export",$osm)); - $oWriterDoc->storeToURL($output_url,$export_args);
- $oWriterDoc->close(true);
- }
- $output_dir = "D:/LightTPD/htdocs/";
- $doc_file = "D:/LightTPD/htdocs/2.doc";
- $pdf_file = "2.pdf";
- $output_file = $output_dir . $pdf_file;
- $doc_file = "file:///" . $doc_file;
- $output_file = "file:///" . $output_file;
- word2pdf($doc_file,$output_file);
- ?>
以上这段代码就是PHP处理Word转PDF的相关实现方法。
文章名称:PHP处理Word转PDF技巧讲解
URL分享:http://www.csdahua.cn/qtweb/news8/109958.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
广告
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源:
快上网