sql >> Database >  >> RDS >> Mysql

Krijg inhoud van docx-bestand dat is opgeslagen in mysql-database als blob-type in php

Maak een query om de gegevens te selecteren en plaats het resultaat in een variabele. Gebruik file_put_content om het docx-bestand op te halen. Wees voorzichtig met koptekst.

Om het te lezen, is het proces anders dan bij een document. U moet de docx "uitpakken" en het xml-bestand erin lezen. U kunt deze functie gebruiken:

<?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);
?>

(bron van de code:http ://www.botskool.com/geeks/how-extract-text-docx-or-odt-files-using-php )



  1. Mysql:Selecteer alle gegevens tussen twee datums

  2. 3 manieren om alle opgeslagen procedures weer te geven die verwijzen naar een tabel in PostgreSQL

  3. Spoorcausaliteit gebruiken om de uitvoering van query's te begrijpen

  4. T-SQL CTE materialiserende technieken werken niet op SQL Server 2012