首页  >  文章  >  后端开发  >  如何在 PHP 中读取 DOCX 文件而不包含无关字符?

如何在 PHP 中读取 DOCX 文件而不包含无关字符?

Susan Sarandon
Susan Sarandon原创
2024-10-25 18:06:03799浏览

How to Read DOCX Files in PHP without Extraneous Characters?

如何在 PHP 中读取 DOC 文件

尝试在 PHP 中读取 DOC 或 DOCX 文件时,您可能会遇到无关字符的问题文本的结尾。出现此错误的原因是提供的代码片段无法正确解析 DOC 格式。

要解决此问题,我们需要稍微修改我们的方法,因为 PHP 不支持原生 DOC 文件解析。相反,我们将使用不同的方法来处理 DOCX 文件。

读取 DOCX 文件的更新代码:

<code class="php">function read_file_docx($filename) {
    $striped_content = '';
    $content = '';

    if (!$filename || !file_exists($filename)) return false;

    $zip = zip_open($filename);

    if (!$zip || is_numeric($zip)) return false;

    while ($zip_entry = zip_read($zip)) {

        if (zip_entry_open($zip, $zip_entry) == FALSE) continue;

        if (zip_entry_name($zip_entry) != "word/document.xml") continue;

        $content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));

        zip_entry_close($zip_entry);
    }// end while

    zip_close($zip);

    $content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
    $content = str_replace('</w:r></w:p>', "\r\n", $content);
    $striped_content = strip_tags($content);

    return $striped_content;
}

$filename = "filepath";// or /var/www/html/file.docx

$content = read_file_docx($filename);
if($content !== false) {

    echo nl2br($content);
}
else {
    echo 'Couldn\'t the file. Please check that file.';
}</code>

此更新的代码使用 PHP ZipArchive 类来打开并读取 DOCX 文件的内容。具体来说,它从ZIP压缩包中提取“word/document.xml”文件,其中包含实际的文本内容。

通过使用此方法,您可以在PHP中成功读取和解析DOCX文件。

以上是如何在 PHP 中读取 DOCX 文件而不包含无关字符?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn