国产精品一区二区三区……-大杳蕉伊人欧美一本遒在饯-日本不卡一区免费在线观看-国产亚洲欧美中文字幕

400-800-9385
網(wǎng)站建設(shè)資訊詳細(xì)

PHP網(wǎng)站開發(fā)之將文檔轉(zhuǎn)換成pdf文件

發(fā)表日期:2019-03-19 09:17:24   作者來源:方維網(wǎng)絡(luò)   瀏覽:3647   標(biāo)簽:PHP網(wǎng)站開發(fā)    
本文介紹的是在Windows系統(tǒng)環(huán)境下進(jìn)行的PHP將text、excl、word等等文檔格式轉(zhuǎn)換成pdf文件格式
第一步:檢查是當(dāng)時的php是否開啟對dcom擴(kuò)展
打開php.ini,搜索php_com_dotnet和php_com_dotnet:
extension=php_com_dotnet.dll   //把前面的分號去掉
com.allow_dcom = true  //改為true
然后輸出下phpinfo()
看看有沒有com_dotnet
COM support enabled
DCOM support enabled
.Net support       enabled
表示COM組件開啟成功
所需要的工具openoffice安裝openoffice軟件
在openoffice安裝成功之后,需要在安裝目錄下porgram文件下打開cmd命令行輸入
cd  /d  d:\openoffice\program
具體看你所安裝的具體文件位置
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard
配置openoffice服務(wù)啟動和激活權(quán)限具體可以百度 這里不做介紹
下面就是代碼介紹
<?php
class  OpenOffice{
     private $osm;
    
    // 構(gòu)造函數(shù),啟用OpenOffice的COM組件
    public function __construct(){
        ini_set('magic_quotes_runtime', 0); // 設(shè)置運(yùn)行時間
        $this->osm = new COM("com.sun.star.ServiceManager") or die("Please be sure that OpenOffice.org is installed.n");
    }
        private function MakePropertyValue($name, $value){
        $oStruct = $this->osm->Bridge_GetStruct("com.sun.star.beans.PropertyValue");
        $oStruct->Name = $name;
        $oStruct->Value = $value;
          return $oStruct;
    }
    
    private function transform($input_url, $output_url){
        $args = array($this->MakePropertyValue('Hidden', true));
        $oDesktop = $this->osm->createInstance("com.sun.star.frame.Desktop");
 
        $oWriterDoc = $oDesktop->loadComponentFromURL($input_url, '_blank', 0, $args);
        $export_args = array($this->MakePropertyValue('FilterName', 'writer_pdf_Export'));
        $oWriterDoc->storeToURL($output_url, $export_args);
        $oWriterDoc->close(true);
        return $this->getPdfPages($output_url);
    }
 
    /**
     * getPdfPages 獲取PDF文件頁數(shù)的函數(shù)獲取,文件應(yīng)當(dāng)對當(dāng)前用戶可讀(linux下)
     * @param  string $path 文件路徑
     * @return int
     */
      private function getPdfPages($path = ''){
          if(!file_exists($path)) return 0;
          if(!is_readable($path)) return 0;
          $fp=@fopen($path, "r"); // 打開文件
          if(!$fp){
              return 0;
          }else{
              $max = 0;
              while(!feof($fp)){
                  $line = fgets($fp,255);
                  if(preg_match('/\/Count [0-9]+/', $line, $matches)){
                      preg_match('/[0-9]+/', $matches[0], $matches2);
                      if ($max<$matches2[0]) $max = $matches2[0];
                  }
              }
              fclose($fp);
              return $max; // 返回頁數(shù)
          }
      }
 
      /**
       * office文件轉(zhuǎn)換pdf格式
       * @param  string $input  需要轉(zhuǎn)換的文件
       * @param  string $output 轉(zhuǎn)換后的pdf文件
       * @return return string 頁數(shù)
       */
      public function run($input = '', $output = ''){
          if(empty($input) || empty($output)){
               return '參數(shù)錯誤';
          }
          $input = "file:///" . str_replace("\\", "/", $input);
          $output = "file:///" . str_replace("\\", "/", $output);
          //dump($input);
          //dump($output);exit;
          // 測試文檔$input='file:///C:/wamp/www/br/Uploads/Temp/files/20181023/5bcf3e022d9ff.txt';
           // 測試文檔$output='file:///C:/wamp/www/br/Uploads/Temp/files/20181023/5bcf3e022d9ff.pdf';
          return $this->transform($input, $output);
      }
 
   
    
 }
調(diào)用
 function topdf(){
   import('org.Util.OpenOffice');
  
   $file_url =$res['file_url'];     //原文件   
   $file_dir = 'E:/wamp/www'.;        //下載文件存放目錄   
   $file_info=pathinfo($file_url);
   $doc_file = $file_dir . $file_url;
   $pdf_file=$file_dir.$file_info['dirname'].'/'.$file_info['filename'].'.pdf';//轉(zhuǎn)換后的pdf名
   //dump($pdf_file);
   //dump($file_info);exit; 
    $open=new \OpenOffice();
   // $open->run($doc_file,$pdf_file);
    $res=$open->run($doc_file,$pdf_file);
     dump($res);
   }
 
基本上完成,開發(fā)中遇到的問題主要有
Openoffice 服務(wù)沒有開啟;
文件沒有找到路徑問題,要絕對路徑
COM組件沒有開啟。注意開啟在window系統(tǒng)下Openoffice開啟后會很占內(nèi)存,服務(wù)器配置要高一點(diǎn)不然就卡死
 
如沒特殊注明,文章均為方維網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請注明來自http://pdcharm.com/news/4957.html
凤台县| 永嘉县| 亳州市| 青川县| 横山县| 东山县| 酒泉市| 南召县| 吴旗县| 荃湾区| 福清市| 肃北| 盐城市| 修文县| 普格县| 城市| 上饶市| 平谷区| 铁岭县| 斗六市| 斗六市| 墨竹工卡县| 达孜县| 澄城县| 自贡市| 潜山县| 阜康市| 平江县| 灵石县| 南充市| 哈尔滨市| 社旗县| 麻阳| 凌云县| 永登县| 石台县| 河曲县| 罗定市| 罗甸县| 车致| 临海市|