1

如何使用 php 查看 doc、docx 文件?有任何 php 或 jquery 脚本可用。我需要通过在线打开文档来显示求职者的简历

或任何函数或类都可用。请让我知道你的建议。

4

1 回答 1

2

您可以从 docx 和 doc 文件中获取内容并可以在浏览器中显示它们,但是您不能将其显示为您在 microsft word 中看到的内容,您需要对其进行格式化。

参考: http: //phpword.com

或者您需要编写一个浏览器插件来识别 .docx exetension 并在那里显示,就像 pdf 文件一样。

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

        //echo $content;
        //echo "<hr>";
        //file_put_contents('1.xml', $content);     

        $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 = "customers.docx";

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

        echo nl2br($content);   
    }
    else {
        echo 'Couldn\'t find the file. Please check that file.';
    }
于 2013-02-05T11:52:22.187 回答