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

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

如何使用 php 更新 docx 文件的自定義屬性

如何使用 php 更新 docx 文件的自定義屬性

PHP
繁花如伊 2023-11-03 15:53:04
我想要閱讀 docx 文件并且想要更改 word 文檔 (*.docx) 的部分內(nèi)容。我已經(jīng)將 docx 轉(zhuǎn)換為 zip 了。我想在 docx 文件中添加新的自定義屬性 (docProps/custom.xml)。當(dāng)我創(chuàng)建新的 docx 文件時(shí)。我可以通過(guò) php word 添加自定義屬性。但是,我想讀取 docx 文件并更新自定義屬性。使用 phpword 是不可能的。當(dāng)我將 docx 轉(zhuǎn)換為 zip 并打開(kāi) docpProps/custom.xml 時(shí)。默認(rèn)情況下,它提供 xml 內(nèi)容,如下所示:當(dāng)前的xml內(nèi)容:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Properties    xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"    xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">    <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="1" name="Property Id">        <vt:lpwstr>121</vt:lpwstr>    </property></Properties>我想添加新屬性并保存到 zip 文件中,如下所示更新內(nèi)容:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Properties    xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"    xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">    <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="1" name="Property Id">        <vt:lpwstr>121</vt:lpwstr>    </property>    <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="Description">        <vt:lpwstr>Lorem ipsum</vt:lpwstr>    </property>    <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="User Id">        <vt:lpwstr>12</vt:lpwstr>    </property></Properties>我的PHP代碼:        $zip = new \ZipArchive;        // Open this Zip File        if ($zip->open('helloWorld.docx') == true) {            // Get custom xml content            $xmlContent = $zip->getFromName('docProps/custom.xml');            // I want to update docProps/custom.xml file            $zip->close();        }這怎么可能有人知道請(qǐng)回復(fù)或給我示例腳本。
查看完整描述

2 回答

?
慕斯王

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

我可以使用以下代碼更新 custom.xml:


    $zip = new \ZipArchive;


    // Open this Zip File

    if ($zip->open('helloWorld.docx') == true) {

        // Get custom xml content

        $xmlContent = $zip->getFromName('docProps/custom.xml');


        // Update docPros/custom.xml content

        $updatedXmlContent = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

        <Properties

            xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"

            xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">

            <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="Id">

                <vt:lpwstr>121</vt:lpwstr>

            </property>

            <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="Notes">

                <vt:lpwstr>Lorem ipsum</vt:lpwstr>

            </property>

            <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="4" name="User">

                <vt:lpwstr>12</vt:lpwstr>

            </property>

        </Properties>';


        //Replace the content with the new content created above.

        $zip->addFromString('docProps/custom.xml', $updatedXmlContent);

        $zip->close();

    }


查看完整回答
反對(duì) 回復(fù) 2023-11-03
?
SMILET

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

該文件只是 XML。使用SimpleXML修改文件

https://www.php.net/manual/en/simplexml.examples-basic.php


查看完整回答
反對(duì) 回復(fù) 2023-11-03
  • 2 回答
  • 0 關(guān)注
  • 254 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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