apt142/htmltotext

A PHP class to convert HTML into a plain text format

0.1.1 2014-05-30 00:48 UTC

This package is not auto-updated.

Last update: 2024-04-23 04:57:40 UTC


README

#HtmlToText Build Status Latest Stable Version Total Downloads License

html2text is a very simple script that uses PHP's DOM methods to load from HTML, and then iterates over the resulting DOM to output plain text.

Example:

<html>
<title>Ignored Title</title>
<body>
  <h1>Hello, World!</h1>

  <p>This is some e-mail content.
  Even though it has whitespace and newlines, the e-mail converter
  will handle it correctly.

  <p>Even mismatched tags.</p>

  <div>A div</div>
  <div>Another div</div>
  <div>A div<div>within a div</div></div>

  <a href="http://foo.com">A link</a>

</body>
</html>

Will be converted into:

Hello, World!

This is some e-mail content. Even though it has whitespace and newlines, the e-mail converter will handle it correctly.

Even mismatched tags.
A div
Another div
A div
within a div
[A link](http://foo.com)

This is a fork of: (https://github.com/soundasleep/html2text)

Installing

You can use Composer to add the package to your project:

{
  "require": {
    "apt142/htmltotext": "dev-master"
  }
}

And then use it quite simply:

$converter = new \HtmlToText\HtmlToText($html);
$text = $converter->convert();

// Or

$converter = new \HtmlToText\HtmlToText();
$convertor->set($html);
$text = $converter->convert();