Skip to content

Instantly share code, notes, and snippets.

@shubaivan
Created June 18, 2015 13:37
Show Gist options
  • Save shubaivan/74079bad119ea0a0140f to your computer and use it in GitHub Desktop.
Save shubaivan/74079bad119ea0a0140f to your computer and use it in GitHub Desktop.
parser docx
public 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment