1

是否可以直接通过 php 在 odt 容器(这是一个 zip 容器)中打开 xml 文件?现在我手动提取 odt-container 以从中获取 content.xml 文件。如果我的 php 脚本可以直接处理 odt 文件会容易得多。

$reader = new XMLReader();
if (!$reader->open("content.xml", 'UTF-8')) die("Failed to open 'content.xml'");
while ($reader->read()){ 
    // Do further processing
}

更新: $reader->open('zip://'.$odt_file.'#content.xml')

4

0 回答 0