Readers
HTML
The name of the reader is HTML
.
<?php
$reader = IOFactory::createReader('HTML');
$reader->load(__DIR__ . '/sample.html');
MsDoc
The name of the reader is MsDoc
.
<?php
$reader = IOFactory::createReader('MsDoc');
$reader->load(__DIR__ . '/sample.doc');
ODText
The name of the reader is ODText
.
<?php
$reader = IOFactory::createReader('ODText');
$reader->load(__DIR__ . '/sample.odt');
RTF
The name of the reader is RTF
.
<?php
$reader = IOFactory::createReader('RTF');
$reader->load(__DIR__ . '/sample.rtf');
Word2007
The name of the reader is Word2007
.
<?php
$reader = IOFactory::createReader('Word2007');
$reader->load(__DIR__ . '/sample.docx');