获取以blob类型保存在mysql dabase中的docx文件的内容

问题描述 投票:2回答:3

我正在将docx文件保存为mysql dadabase中的BLOB类型。保存后,我试图通过获取已归档的内容来查看文件的内容,但是它显示了一些无法读取的内容。这对于具有扩展名.doc的文件来说效果很好,但是我不知道为什么它不起作用.docx文件。如果有答案,请提供正确的说明。

php mysql blob docx
3个回答
1
投票

进行查询以选择数据,然后将结果放入变量中。使用file_put_content获取docx文件。只是要小心头。

要阅读,其过程与文档不同。您必须“解压缩” docx并读取其中的xml文件。您可以使用此功能:

<?php

/*Name of the document file*/
$document = 'filename.docx';

/**Function to extract text*/
function extracttext($filename) {
    //Check for extension
    $ext = end(explode('.', $filename));

    //if its docx file
    if($ext == 'docx')
    $dataFile = "word/document.xml";
    //else it must be odt file
    else
    $dataFile = "content.xml";     

    //Create a new ZIP archive object
    $zip = new ZipArchive;

    // Open the archive file
    if (true === $zip->open($filename)) {
        // If successful, search for the data file in the archive
        if (($index = $zip->locateName($dataFile)) !== false) {
            // Index found! Now read it to a string
            $text = $zip->getFromIndex($index);
            // Load XML from a string
            // Ignore errors and warnings
            $xml = DOMDocument::loadXML($text, LIBXML_NOENT | LIBXML_XINCLUDE | LIBXML_NOERROR | LIBXML_NOWARNING);
            // Remove XML formatting tags and return the text
            return strip_tags($xml->saveXML());
        }
        //Close the archive file
        $zip->close();
    }

    // In case of failure return a message
    return "File not found";
}

echo extracttext($document);
?>

(代码源:http://www.botskool.com/geeks/how-extract-text-docx-or-odt-files-using-php


0
投票

Docx是压缩文件类型See Tag Wiki

这就是为什么您无法从原始内容中获取文档内容的原因。


0
投票

我找到了此解决方案:

"update blob_table set blob_col='LOAD_FILE('$tmp_name')";

其中$tmp_name是您上载的文件,这是使用LOAD_FILE功能的6年历史问题的答案。可能这是mysql中新添加的功能。

© www.soinside.com 2019 - 2024. All rights reserved.