Download the PHP package docxpresso/html2text without Composer
On this page you can find all versions of the php package docxpresso/html2text. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download docxpresso/html2text
More information about docxpresso/html2text
Files in docxpresso/html2text
Package html2text
Short Description A simple package that converts HTML into plain text using DOM methods
License MIT
Rated 5.00 based on 1 reviews
Informations about the package html2text
HTML to Plain Text Converter
HTML2TEXT is a single class PHP package that converts HTML into plain text.
It uses DOM methods rather than regular expressions and although it works out of the box it can be easily further customized to suit any particular need.
You can visit the official page in Docxpresso.
Installing HTML2TEXT
The recommended way to install HTML2TEXT is through Composer.
Next, run the Composer command to install the latest stable version of HTML2TEXT:
After installing, you need to require Composer's autoloader:
You can then later update HTML2TEXT using composer:
Using HTML2TEXT
The use of HTML2TEXT is extremely simple:
You can override some of the default values by including an options array whenever you invoke the HTML2TEXT class. The following options are available:
- bold: a string of chars that will wrap text in b or strong tags. The default value is an empty string.
- cellSeparator: a string of chars used to separate content between contiguous cells in a row. Default value is " || " (\t may be also a sensible choice)
- images: if set to true the alt value associated to the image will be printed like [img: alt value]. Default value is true.
- italics: a string of chars that will wrap text in i or em tags. The default value is an empty string.
- newLine: if set it will replace the default value (\n\r) for titles and paragraphs.
- tab: a string of chars that will be used like a "tab". The default value is " " (\t may be another standard option)
- titles: it can be "underline" (default), "uppercase" or "none".
All versions of html2text with dependencies
ext-zip Version *
ext-tidy Version *
lib-libxml Version *