PHP で DOC ファイルを読み取る方法
PHP で DOC または DOCX ファイルを読み取ろうとすると、次の場所で無関係な文字に関する問題が発生する可能性があります。テキストの終わり。このエラーは、提供されたコード スニペットが DOC 形式を正しく解析できないために発生します。
PHP はネイティブ DOC ファイル解析をサポートしていないため、この問題を解決するには、アプローチを少し変更する必要があります。代わりに、別の方法を使用して DOCX ファイルを処理します。
DOCX ファイルを読み取るための更新されたコード:
<code class="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); $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 = "filepath";// or /var/www/html/file.docx $content = read_file_docx($filename); if($content !== false) { echo nl2br($content); } else { echo 'Couldn\'t the file. Please check that file.'; }</code>
この更新されたコードは、PHP ZipArchive クラスを使用して、 DOCX ファイルを開いて内容を読み取ります。具体的には、ZIP アーカイブから「word/document.xml」ファイルを抽出します。このファイルには、実際のテキスト コンテンツが含まれています。
この方法を使用すると、PHP で DOCX ファイルを正常に読み取り、解析できます。
以上が無関係な文字を含まずに PHP で DOCX ファイルを読み取る方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。