apt142/htmltotext
最新稳定版本:0.1.1
Composer 安装命令:
composer require apt142/htmltotext
包简介
A PHP class to convert HTML into a plain text format
README 文档
README
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();
统计信息
- 总下载量: 12.47k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: EPL-1.0
- 更新时间: 2014-07-14