Heim  >  Artikel  >  Backend-Entwicklung  >  PHP Word & Excel 转 PDF

PHP Word & Excel 转 PDF

WBOY
WBOYOriginal
2016-07-25 08:47:451530Durchsuche
Windows + Microsoft Office 2013 only!
                   
                               
                                       
                                       
            
  1. function wd2pdf($ori, $dst)
  2. {
  3.         $winword = new COM('Word.Application');
  4.         $document = $winword->Documents->Open($ori);
  5.         $document->ExportAsFixedFormat($dst, 17);
  6.         $document->Close();
  7.         $winword->Quit();
  8. }
复制代码
                                           
                                       
                                       
            
  1. function xl2pdf($ori, $dst)
  2. {
  3.         $excel = new COM('Excel.Application');
  4.         $workbook = $excel->Workbooks->Open($ori);
  5.         $workbook->ExportAsFixedFormat(0, $dst);
  6.         $workbook->Close();
  7.         $excel->Quit();
  8. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:超简洁PHPMVC Nächster Artikel:企业数据备份技术