程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP處理Word轉PDF技巧講解

PHP處理Word轉PDF技巧講解

編輯:關於PHP編程

我們知道,

PHP處理Word轉PDF代碼示例:

  1. < ?php  
  2. set_time_limit(0);  
  3. function MakePropertyValue($name,$value,$osm){  
  4. $oStruct = $osm->Bridge_GetStruct
    ("com.sun.star.beans.PropertyValue");  
  5. $oStruct->Name = $name;  
  6. $oStruct->Value = $value;  
  7. return $oStruct;  
  8. }  
  9. function word2pdf($doc_url, $output_url){  
  10. $osm = new COM("com.sun.star.ServiceManager") 
    or die ("Please be sure that OpenOffice.org 
    is installed.n");  
  11. $args = array(MakePropertyValue("Hidden",true,$osm));  
  12. $oDesktop = $osm->createInstance("com.sun.star
    .frame.Desktop");  
  13. $oWriterDoc = $oDesktop->loadComponentFromURL
    ($doc_url,"_blank", 0, $args);  
  14. $export_args = array(MakePropertyValue
    ("FilterName","writer_pdf_Export",$osm));  
  15. $oWriterDoc->storeToURL($output_url,$export_args);  
  16. $oWriterDoc->close(true);  
  17. }  
  18. $output_dir = "D:/LightTPD/htdocs/";  
  19. $doc_file = "D:/LightTPD/htdocs/2.doc";  
  20. $pdf_file = "2.pdf";  
  21. $output_file = $output_dir . $pdf_file;  
  22. $doc_file = "file:///" . $doc_file;  
  23. $output_file = "file:///" . $output_file;  
  24. word2pdf($doc_file,$output_file);  
  25. ?> 

以上這段代碼就是PHP處理Word轉PDF的相關實現方法。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved