PHP Classes

File: xmltest.php

Recommend this page to a friend!
  Classes of Timothy Edwards   PHP DOCX to XML   xmltest.php   Download  
File: xmltest.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP DOCX to XML
Extract XML files from Microsoft Word DOCX files
Author: By
Last change: Update xmltest.php

The class was originally wrongly named. Now WordXML
Date: 2 years ago
Size: 247 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

</head>

<body>
<?php
require_once('wordxml.php');
$rt = new WordXML(false);
$rt->readDocument('sample.docx');
?>
</body>