You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
581 B
22 lines
581 B
<?php
|
|
|
|
/**
|
|
* Create a DOCX file. Transform DOCX to HTML
|
|
*
|
|
* @category Phpdocx
|
|
* @package examples
|
|
* @subpackage easy
|
|
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L.
|
|
* (http://www.2mdc.com)
|
|
* @license LGPL
|
|
* @version 2.0
|
|
* @link http://www.phpdocx.com
|
|
* @since File available since Release 2.0
|
|
*/
|
|
require_once '../../classes/TransformDoc.inc';
|
|
|
|
$document = new TransformDoc();
|
|
$document->setStrFile('../files/Text.docx');
|
|
$document->generateXHTML();
|
|
$document->validatorXHTML();
|
|
echo $document->getStrXHTML();
|
|
|