使用PHP在docx文件中查找换行符

时间:2011-04-09 20:14:03

标签: php ms-office document

我的PHP脚本成功读取了.docx文件中的所有文本,但我无法确定换行符应该在哪里,因此它会使文本聚集起来并且难以阅读(一个巨大的段落)。我已经手动浏览了所有的XML文件,试图找出它,但我无法弄明白。

以下是我用来检索文件数据并返回纯文本的函数。

    public function read($FilePath)
{
    // Save name of the file
    parent::SetDocName($FilePath);

    $Data = $this->docx2text($FilePath);

    $Data = str_replace("<", "&lt;", $Data);
    $Data = str_replace(">", "&gt;", $Data);

    $Breaks = array("\r\n", "\n", "\r");
    $Data = str_replace($Breaks, '<br />', $Data);

    $this->Content = $Data;
}

function docx2text($filename) {
    return $this->readZippedXML($filename, "word/document.xml");
}

function readZippedXML($archiveFile, $dataFile)
{
    // Create new ZIP archive
    $zip = new ZipArchive;

    // Open received archive file
    if (true === $zip->open($archiveFile))
    {
        // If done, search for the data file in the archive
        if (($index = $zip->locateName($dataFile)) !== false)
        {
            // If found, read it to the string
            $data = $zip->getFromIndex($index);

            // Close archive file
            $zip->close();

            // Load XML from a string
            // Skip errors and warnings
            $xml = DOMDocument::loadXML($data, LIBXML_NOENT | LIBXML_XINCLUDE | LIBXML_NOERROR | LIBXML_NOWARNING);

            $xmldata = $xml->saveXML();
            //$xmldata = str_replace("</w:t>", "\r\n", $xmldata);
            // Return data without XML formatting tags
            return strip_tags($xmldata);
        }

        $zip->close();
    }

    // In case of failure return empty string
    return "";
} 

2 个答案:

答案 0 :(得分:9)

这实际上是一个非常简单的答案。您只需在readZippedXML()

中添加此行即可
$xmldata = str_replace("</w:p>", "\r\n", $xmldata);

这是因为&lt; / w:p&gt;用什么词来标记段落的结尾。 E.g。

<w:p>This is a paragraph.</w:p>
<w:p>And a second one.</w:p>

答案 1 :(得分:0)

实际上,为什么不使用OpenXML?我认为它也适用于PHP。然后你不必深入了解细节文件的详细信息。

这是一个链接:
http://openxmldeveloper.org/articles/4606.aspx