1

PHPを使用してdoc、docxファイルを表示するにはどうすればよいですか? 任意の php または jquery スクリプトが利用可能です。オンラインで文書を開いて求職者に履歴書を見せたい

または任意の関数またはクラスが利用可能です。あなたの提案を教えてください。

4

1 に答える 1

2

docx および doc ファイルからコンテンツを取得してブラウザーで表示することはできますが、microsft word で表示されるものとして表示することはできません。フォーマットする必要があります。

参照: http://phpword.com

または、pdf ファイルの場合と同様に、.docx 拡張子を識別してそこに表示するブラウザ プラグインを作成する必要があります。

<?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 に答える