成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

PHP網(wǎng)站開發(fā)之將文檔轉換成pdf文件(php動態(tài)網(wǎng)站開發(fā)的課后答案)

2023-12-22    分類: 網(wǎng)站建設

本文介紹的是在Windows系統(tǒng)環(huán)境下進行的PHP將text、excl、word等等文檔格式轉換成pdf文件格式
第一步:檢查是當時的php是否開啟對dcom擴展
打開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服務啟動和激活權限具體可以百度 這里不做介紹
下面就是代碼介紹
<?php
class  OpenOffice{
     private $osm;

    // 構造函數(shù),啟用OpenOffice的COM組件
    public function __construct(){
        ini_set('magic_quotes_runtime', 0); // 設置運行時間
        $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ù)獲取,文件應當對當前用戶可讀(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文件轉換pdf格式
       * @param  string $input  需要轉換的文件
       * @param  string $output 轉換后的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);
      }

 }
調用
 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';//轉換后的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 服務沒有開啟;
文件沒有找到路徑問題,要絕對路徑
COM組件沒有開啟。注意開啟在window系統(tǒng)下Openoffice開啟后會很占內(nèi)存,服務器配置要高一點不然就卡死
 

以上就是關于PHP網(wǎng)站開發(fā)之將文檔轉換成pdf文件(php動態(tài)網(wǎng)站開發(fā)的課后答案),希望對你有幫助,更多內(nèi)容關注創(chuàng)新互聯(lián)。

網(wǎng)站題目:PHP網(wǎng)站開發(fā)之將文檔轉換成pdf文件(php動態(tài)網(wǎng)站開發(fā)的課后答案)
路徑分享:http://jinyejixie.com/news31/309731.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供云服務器、關鍵詞優(yōu)化商城網(wǎng)站、移動網(wǎng)站建設、網(wǎng)站維護Google

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站建設網(wǎng)站維護公司
台南市| 长顺县| 辽宁省| 宜春市| 城固县| 丹凤县| 陵水| 临沂市| 内乡县| 凤台县| 抚顺县| 承德县| 兴和县| 平利县| 扶绥县| 会同县| 当阳市| 宜兴市| 历史| 毕节市| 涟源市| 左云县| 冷水江市| 永兴县| 永善县| 郸城县| 会宁县| 汾阳市| 田东县| 改则县| 温泉县| 涞水县| 涞水县| 沙河市| 崇礼县| 潞城市| 沙河市| 温泉县| 晋中市| 鄯善县| 温泉县|