使用PHP格式化word文档(.doc / .docx)文件

时间:2014-04-05 08:12:16

标签: php

在这里,我正在开发一个求职者应用程序,求职者会在那里上传他们的简历。 其他方面的雇主将在线查看求职者简历。 因为我正在使用php阅读word文档。 但它显示为未格式化的文本。 我该如何格式化呢。

下面是我用来阅读word文档的代码。

<?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>', "\r\n", $content);
        $content = str_replace('</w:r></w:p>', "\r\n", $content);
        $content = str_replace("\t",'&nbsp;&nbsp;&nbsp;',$content);
            //$striped_content = strip_tags($content);


        return $content;
    }



    $filename = "document.docx";

    $content = read_file_docx($filename);
    if($content !== false) {
        echo "<hr>";
        echo nl2br($content);
        echo "<hr>";    
    }
    else {
        echo 'Couldn\'t the file. Please check that file.';
    }

任何人都可以帮助我。

0 个答案:

没有答案