html2text / html2text
Converts HTML to formatted plain text
Installs: 24 121 947
Dependents: 91
Suggesters: 1
Security: 0
Stars: 561
Watchers: 23
Forks: 177
Open Issues: 17
Requires (Dev)
- phpunit/phpunit: ~4|^9.0
Suggests
- ext-mbstring: For best performance
- symfony/polyfill-mbstring: If you can't install ext-mbstring
README
A PHP library for converting HTML to formatted plain text.
Installing
composer require html2text/html2text
Basic Usage
$html = new \Html2Text\Html2Text('Hello, "<b>world</b>"'); echo $html->getText(); // Hello, "WORLD"
History
This library started life on the blog of Jon Abernathy http://www.chuggnutt.com/html2text
A number of projects picked up the library and started using it - among those was RoundCube mail. They made a number of updates to it over time to suit their webmail client.
Now it has been extracted as a standalone library. Hopefully it can be of use to others.