新聞中心
這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
PHP處理Word轉(zhuǎn)PDF技巧講解
我們知道,PHP語(yǔ)言的合理運(yùn)用可以幫助我們實(shí)現(xiàn)導(dǎo)出Word文檔的功能。今天我們將為大家介紹PHP處理Word轉(zhuǎn)PDF的相關(guān)實(shí)現(xiàn)方法。#t#

創(chuàng)新互聯(lián)建站是一家專業(yè)提供羅田企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站建設(shè)、成都網(wǎng)站制作、H5場(chǎng)景定制、小程序制作等業(yè)務(wù)。10年已為羅田眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。
PHP處理Word轉(zhuǎn)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轉(zhuǎn)PDF的相關(guān)實(shí)現(xiàn)方法。
新聞標(biāo)題:PHP處理Word轉(zhuǎn)PDF技巧講解
URL鏈接:http://www.dlmjj.cn/article/dhppepe.html


咨詢
建站咨詢
