PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of Timothy Edwards   PHP Parse DOCX to HTML with Images   test.php   Download  
File: test.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Parse DOCX to HTML with Images
Convert Microsoft Word DOCX document to HTML
Author: By
Last change: Update test.php

Amendment for it to work in php 7.3
Date: 1 year ago
Size: 129 bytes
 

Contents

Class file image Download
<?php
require_once('wordphp.php');
$rt = new WordPHP(false);
$text = $rt->readDocument('sample.docx','NN');
echo
$text;
?>