问题
Brief description: I have a Docx
file. I am able to export data from it using PHP
code but the data looses it Html
format. How can i keep that intact and extract the data.
So far my php
code below:
<?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 = "sample.docx";// 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.';
}
?>
Please see below image and you will understand my problem::
Please guide how can i achieve the same, so that in
$content
variable it get the text as-is.
Thank you for your time.
来源:https://stackoverflow.com/questions/59767159/fetch-text-from-docx-using-php-without-loosing-html-format