HtmlToText
, (*1)
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., (*2)
Example:, (*3)
<html>
<title>Ignored Title</title>
<body>
Hello, World!
<
p>This is some e-mail content.
Even though it has whitespace and newlines, the e-mail converter
will handle it correctly.
Even mismatched tags., (*4)
A div
Another div
<a href="http://foo.com">A link</a>
</body>
</html>
Will be converted into:, (*5)
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), (*6)
Installing
You can use Composer to add the package to your project:, (*7)
{
"require": {
"apt142/htmltotext": "dev-master"
}
}
And then use it quite simply:, (*8)
$converter = new \HtmlToText\HtmlToText($html);
$text = $converter->convert();
// Or
$converter = new \HtmlToText\HtmlToText();
$convertor->set($html);
$text = $converter->convert();