gpt4 book ai didi

php - 使用php上传docx文件并将内容和图像存储到数据库中

转载 作者:行者123 更新时间:2023-11-29 23:20:28 25 4
gpt4 key购买 nike

我正在尝试上传一个包含一些内容和图像的 docx 文件。我想存储文件的内容和图像应该存储到数据库中。我正在使用 php 和 mysql。 我尝试过:

<?php

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

function get_string_between($string, $start, $end) {
$string = " " . $string;
$ini = strpos($string, $start);
if ($ini == 0)
return "";
$ini += strlen($start);
$len = strpos($string, $end, $ini) - $ini;
return substr($string, $ini, $len);
}

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

echo $im = get_string_between($content,"descr=","/>");
$content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
// $content = str_replace('</w:r></w:p>', "\r\n", $content);
//$content = str_replace('</w:r></w:p>', "-viavitae-", $content);
// $content = str_replace('-viavitae-', $im, $content);
// $striped_content = strip_tags($content);
$striped_content = ($content);
// echo get_string_between($striped_content,"descr=","/>");
return $striped_content;
}

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

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

最佳答案

您已经可以使用您的代码获取 $content。

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

现在您需要做的就是将内容解析为 XML 文件:

您需要获取所有“w:p”元素(即段落),获取它们的文本(“w:t”标记内的所有内容),然后使用“\n”将所有这些 block 连接在一起以创建段落。

对于图像,您可以在文件夹/word/media/*中获取它们

关于php - 使用php上传docx文件并将内容和图像存储到数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27352790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com