PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of Rohit Arya   PHP Word DOCX to HTML with Images   test.php   Download  
File: test.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Word DOCX to HTML with Images
Convert Microsoft Word DOCX document to HTML
Author: By
Last change:
Date: 3 years ago
Size: 122 bytes
 

Contents

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