首頁 > 軟體

php生成並下載word檔案到本地實現方法詳解

2022-08-29 22:00:29

安裝phpword包

通過composer安裝phpword包。因為是使用thinkphp架構,安裝挺方便的。

直接下載phpword壓縮包有問題。

composer require phpoffice/phpword

準備一個word模板(docx格式)

準備好word模板後,只需要用變數替換需要替換的值,如下圖所示,將房東名替換成${name}。

前端呼叫程式碼

系統前端是使用vue3+element Ui開發的。所以請求用到axios。其中設定responseTyperesponseType 表示伺服器響應的資料型別,可以是 ‘arraybuffer’, ‘blob’, ‘document’, ‘json’, ‘text’, ‘stream’。預設的 responseType: ‘json’,

而axios下載檔案需要設定responseType: ‘blob’,

  axios.post(url, data, { headers: { 'X-CSRF-TOKEN': this.token }, responseType: 'blob' })
    .then((res) => {
      const { data, headers } = res
      const contentDisposition = headers['content-disposition']
      const patt = new RegExp('filename=([^;]+.[^.;]+);*')
      const result = patt.exec(contentDisposition)
      const filename = decodeURI(JSON.parse(result[1])) // 處理檔名,解決中文亂碼問題
      const blob = new Blob([data], { type: headers['content-type'] })
      let dom = document.createElement('a')
      let url = window.URL.createObjectURL(blob)
      dom.href = url
      dom.download = decodeURI(filename)
      dom.style.display = 'none'
      document.body.appendChild(dom)
      dom.click()
      dom.parentNode.removeChild(dom)
      window.URL.revokeObjectURL(url)
    }).catch((err) => { })

PHP處理程式碼

後端方面的程式碼如下。Talk is cheap, show me the code.

    public function contract()
    {
        $tmp=new PhpOfficePhpWordTemplateProcessor('static/wordfile/contract.docx');//開啟模板
        $tmp->setValue('name', '君常笑');//替換變數name
        $tmp->setValue('mobile', '12');//替換變數mobile
        $tmp->saveAs('../tempfile/簡歷.docx');//另存為
        $file_url = '../tempfile/簡歷.docx';
        $file_name=basename($file_url);
        $file_type=explode('.', $file_url);
        $file_type=$file_type[count($file_type)-1];
        $file_type=fopen($file_url, 'r'); //開啟檔案
        //輸入檔案標籤
        header("Content-type: application/octet-stream");
        header("Accept-Ranges: bytes");
        header("Accept-Length: ".filesize($file_url));
        header("Content-Disposition:attchment; filename=" . json_encode('合同.docx'));
        //輸出檔案內容
        echo fread($file_type, filesize($file_url));
        fclose($file_type);
    }

one more thing

在傳輸過程中,可能會出現檔名是亂碼的問題。也就是Content-Disposition中filename中文是亂碼。解決方法如下:

php端使用json_encode(filename)

前端使用JSON.parse()

到此這篇關於php生成並下載word檔案到本地實現方法詳解的文章就介紹到這了,更多相關php下載word檔案內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com