| Recommend this page to a friend! | 
| Info | Documentation | Reputation | Support forum | Blog | Links | 
| Ratings | Unique User Downloads | Download Rankings | ||||
| Not enough user ratings | Total: 402 | All time:  6,557 This week: 78 | ||||
| Version | License | PHP version | Categories | |||
| html2text 1.0.18 | GNU General Publi... | 5 | HTML, PHP 5, Text processing | 
| Collaborate with this project | Author  | |
html2text - github.com Description This class can parse HTML and extract text contained in it. Innovation Award  | 
Convert HTML to formatted plain text, e.g. for text mails.
The recommended installation way is through Composer.
$ composer require voku/html2text
$html = new \voku\Html2Text\Html2Text('Hello, "<b>world</b>"');
echo $html->getText();  // Hello, "WORLD"
Each element (h1, li, div, etc) can have the following options:
For example:
$html = '<h1>Should have "AAA" changed to BBB</h1><ul><li>• Custom bullet should be removed</li></ul><img alt="The Linux Tux" src="tux.png" />';
$expected = 'SHOULD HAVE "BBB" CHANGED TO BBB' . "\n\n" . '- Custom bullet should be removed |' . "\n\n" . '[IMAGE]: "The Linux Tux"';
$html2text = new Html2Text(
    $html,
    array(
        'width'    => 0,
        'elements' => array(
            'h1' => array(
              'case' => Html2Text::OPTION_UPPERCASE, 
              'replace' => array('AAA', 'BBB')),
            'li' => array(
              'case' => Html2Text::OPTION_NONE, 
              'replace' => array('•', ''), 
              'prepend' => "- ",
              'append' => " |",
            ),
        ),
    )
);
$html2text->setPrefixForImages('[IMAGE]: ');
$html2text->setPrefixForLinks('[LINKS]: ');
$html2text->getText(); // === $expected
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 this is a extend fork of the original Html2Text.
For support and donations please visit Github | Issues | PayPal | Patreon.
For status updates and release announcements please visit Releases | Twitter | Patreon.
For professional support please contact me.
| File | Role | Description | ||
|---|---|---|---|---|
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Lic. | License text | |||
| Example | Example script | |||
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Doc. | Documentation | |||
| / | tests | 
| File | Role | Description | ||
|---|---|---|---|---|
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Aux. | Auxiliary script | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
|    | 
Class | Class source | ||
| / | tests | / | fixtures | 
| File | Role | Description | 
|---|---|---|
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
|    | 
Doc. | Documentation | 
| The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. | 
| Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
| 100% | 
  | 
  | 
| Applications that use this package | 
 If you know an application of this package, send a message to the author to add a link here.