第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

PhpWord 不會(huì)用 TemplateProcessor 替換文本

PhpWord 不會(huì)用 TemplateProcessor 替換文本

PHP
婷婷同學(xué)_ 2023-06-24 17:30:03
我在這里遇到了與@pindol相同的問題。我在頁(yè)面問題中遵循了用戶提供的一些步驟。因此,我測(cè)試了 TemplateProcessor 中的函數(shù)以查看輸出,最后,使用 var_dump 測(cè)試了 $TemplateProcessor 漏洞:object(PhpOffice\PhpWord\TemplateProcessor)#1259 (9) { ["zipClass":protected]=> object(PhpOffice\PhpWord\Shared\ZipArchive)#1008 (5) { ["numFiles"]=> int(11) ["filename"]=> string(18) "/tmp/PhpWord5qX68E" ["tempDir":"PhpOffice\PhpWord\Shared\ZipArchive":private]=> string(4) "/tmp" ["zip":"PhpOffice\PhpWord\Shared\ZipArchive":private]=> object(PclZip)#1046 (5) { ["zipname"]=> string(18) "/tmp/PhpWord5qX68E" ["zip_fd"]=> int(0) ["error_code"]=> int(0) ["error_string"]=> string(0) "" ["magic_quotes_status"]=> int(-1) } ["usePclzip":"PhpOffice\PhpWord\Shared\ZipArchive":private]=> bool(true) } ["tempDocumentFilename":protected]=> string(18) "/tmp/PhpWord5qX68E" ["tempDocumentMainPart":protected]=> string(2690) " Test : the test is perfect" ["tempDocumentSettingsPart":protected]=> string(2842) " " ["tempDocumentHeaders":protected]=> array(0) { } ["tempDocumentFooters":protected]=> array(0) { } ["tempDocumentRelations":protected]=> array(1) { ["word/document.xml"]=> string(817) " " } ["tempDocumentContentTypes":protected]=> string(1312) " " ["tempDocumentNewImages":protected]=> array(0) { } }?正如我們?cè)?["tempDocumentMainPart":protected] 中看到的,變量已成功替換為以下函數(shù):? ? $templateProcessor = new TemplateProcessor('results/test.docx');? ? $templateProcessor->setValue('test', 'the test is perfect');?? ? var_dump($templateProcessor);? ? exit();? ? $templateProcessor->saveAs('results/results.docx');? ? return response()->download('results/results.docx');但是當(dāng)我嘗試另存為或下載文件時(shí),下載的文件中的變量沒有更改。它與提供的模板相同,當(dāng)我嘗試打開它時(shí)收到一條錯(cuò)誤消息(下載后):Word found unreadable content in results.docx. Do you want to recover the contents of this document? If the source for this document is reliable, click Yes.我在 PhpWord 0.16.0 和 0.17.0 中對(duì)此進(jìn)行了測(cè)試,并將其與 laravel 一起使用(我不認(rèn)為問題出在 laravel 上)。PHP版本:PHP?7.4.7?(cli)?(built:?Jun?12?2020?07:48:26)?(?NTS?)我使用 PCLZIP 而不是 zipArchive,因?yàn)樗鼤?huì)產(chǎn)生內(nèi)存問題。提前致謝
查看完整描述

1 回答

?
慕田峪7331174

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超13個(gè)贊

我遇到了同樣的問題并設(shè)法解決了它!

我使用 Apache2 的發(fā)布版本在 MacOS 上工作,我不知道您是否仍然遇到這個(gè)問題并且與我處于相同的環(huán)境中,但無論如何我都會(huì)發(fā)布以防其他人遇到同樣的問題。

腳步 :

1.下載php@8.0

要下載 php@8.0,我運(yùn)行了以下命令(源代碼):

brew?tap?shivammathur/php
brew?install?shivammathur/php/php@8.0brew?link?--overwrite?--force?php@8.0

不是 php@8.1,此版本(截至 2022 年 2 月)會(huì)導(dǎo)致顯示 DEPRECATED 消息GitHub Issue

2.更新Apache2配置

然后我/etc/apache2/httpd.conf根據(jù)brew安裝程序消息更新了我的文件

在編輯配置文件之前務(wù)必備份它們!

To?enable?PHP?in?Apache?add?the?following?to?httpd.conf?and?restart?Apache:
????LoadModule?php_module?/usr/local/opt/php/lib/httpd/modules/libphp.so

????<FilesMatch?\.php$>
????????SetHandler?application/x-httpd-php
????</FilesMatch>

Finally,?check?DirectoryIndex?includes?index.php
????DirectoryIndex?index.php?index.html

我將 LoadModule 路徑更改為,/usr/local/opt/php@8.0/lib/httpd/modules/libphp.so因?yàn)槲蚁螺d了多個(gè)版本的 php

然后使用以下命令重新啟動(dòng) Apache2:

sudo?apachectl?restart

3.使用ZipArchive

刪除Settings::setZipClass(Settings::PCLZIP);并使用 ZipArchive。

我不能保證您使用 ZipArchive 的問題會(huì)使用 php@8.0 消失,因?yàn)槟坪跤龅搅伺c我不同的問題,那就是在我的系統(tǒng)上根本找不到 ZipArchive。

結(jié)論 :

我的猜測(cè)是,問題在于Settings::setZipClass(Settings::PCLZIP)無法創(chuàng)建正常的 OOXML(但僅在出于某種原因使用 TemplateProcessor 時(shí)?因?yàn)樗谑褂?創(chuàng)建新文檔時(shí)工作得很好new PhpWord()


查看完整回答
反對(duì) 回復(fù) 2023-06-24
  • 1 回答
  • 0 關(guān)注
  • 558 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)