PHP處理Word轉(zhuǎn)PDF技巧講解
作者:佚名
PHP處理Word轉(zhuǎn)PDF對(duì)于初學(xué)者來說還是一個(gè)比較難掌握的問題。本文我們介紹了這一功能的實(shí)現(xiàn)方法,希望對(duì)大家有所幫助。
我們知道,PHP語(yǔ)言的合理運(yùn)用可以幫助我們實(shí)現(xiàn)導(dǎo)出Word文檔的功能。今天我們將為大家介紹PHP處理Word轉(zhuǎn)PDF的相關(guān)實(shí)現(xiàn)方法。#t#
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)方法。
責(zé)任編輯:曹凱
來源:
百度博客