用php显示word文档到浏览器

时间:2017-10-04 21:17:15

标签: php

这是我尝试过的功能,但它没有显示任何内容。我从数据库中提取这些内容并获取我需要的所有内容,但实际的文档内容。

 private function read_docx(){
//var_dump($this-filename);
    $striped_content = '';
    $content = '';

    $zip = zip_open($this->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;
}

这是我显示内容的地方,但显示为空。

$document = new DocxConversion($name['name']);
            $reflector = new ReflectionObject($document);
            $method = $reflector->getMethod('read_docx');
            $method->setAccessible(true);
            echo $method->invoke($document) . "<br>";
            //$newDoc = $document->read_docx();
            echo $name['name'] . "<br>";
            echo $extension . "<br>";

0 个答案:

没有答案