私はを試しています。docxを読んでください。**最初にdocxConversionクラスを使用して分割します。** 最初の関数read_docxPHP、段落に分割.docx(PREG_SPLIT、 "/.n/u")
private function read_docx(){
$striped_content = '';
$content = '';
$zip = zip_open($this->filename);
if (!$zip || is_numeric($zip)) return false;
$zip_entry = zip_read($zip);
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);
$content = str_replace("</w:p>", "\r\n", $content);
$pattern = "/(الفقرة\s[0-9]+\s)|(الأولى الفقرة)./u";//المادة\s*\d:
$striped_content = strip_tags($content);
$splitted_para_arr = preg_split($pattern,$striped_content,null,PREG_SPLIT_NO_EMPTY);
return $splitted_para_arr;//striped_content;
}
第二の機能は、その後のフォローを使用して段落に各パーツを分割
public function convertToText() {
if(isset($this->filename) && !file_exists($this->filename)) {
return "File Not exists";
}
$fileArray = pathinfo($this->filename);
$file_ext = $fileArray['extension'];
if($file_ext == "docx") {
return $this->read_docx();
} else {
return "Invalid File Type";
}
}
テキストに変換されています機能
public function getParag($article){
$splitted_para_arr = preg_split("/\.\n/u",$article,null,PREG_SPLIT_NO_EMPTY);
return $splitted_para_arr;//striped_content;
}
INGのしかし、ここでの問題は、あなたがどのような種類のに対処したい場合は、私は次のパターン「/.\n/u」
'。\ n'は、ウィンドウスタイルの' \ r \ n'改行を使用しているため、有効なシーケンスではないようです。たぶん '。\ r \ n'は動作しますが、'/\。\ r?\ n/'のような正規表現はおそらく良いでしょう。 – apokryfos
@apokryfosありがとうございましたあなたの提案は私のために働いています –