溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php怎么生成并下載word文件到本地

發(fā)布時間:2022-08-30 09:29:49 來源:億速云 閱讀:146 作者:iii 欄目:開發(fā)技術(shù)

這篇“php怎么生成并下載word文件到本地”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“php怎么生成并下載word文件到本地”文章吧。

安裝phpword包

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

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

composer require phpoffice/phpword

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

準(zhǔn)備好word模板后,只需要用變量替換需要替換的值,如下圖所示,將房東名替換成${name}。

php怎么生成并下載word文件到本地

前端調(diào)用代碼

系統(tǒng)前端是使用vue3+element Ui開發(fā)的。所以請求用到axios。其中設(shè)置responseTyperesponseType 表示服務(wù)器響應(yīng)的數(shù)據(jù)類型,可以是 ‘arraybuffer’, ‘blob’, ‘document’, ‘json’, ‘text’, ‘stream’。默認(rèn)的 responseType: ‘json’,

而axios下載文件需要設(shè)置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 \PhpOffice\PhpWord\TemplateProcessor('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'); //打開文件
        //輸入文件標(biāo)簽
        header("Content-type: application/octet-stream");
        header("Accept-Ranges: bytes");
        header("Accept-Length: ".filesize($file_url));
        header("Content-Disposition:attchment; filename=" . json_encode('合同.docx'));
        //輸出文件內(nèi)容
        echo fread($file_type, filesize($file_url));
        fclose($file_type);
    }

one more thing

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

php端使用json_encode(filename)

前端使用JSON.parse()

以上就是關(guān)于“php怎么生成并下載word文件到本地”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI