groovenectar/html2text

一个将HTML转换为纯文本格式的PHP脚本

安装: 113

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 134

语言:HTML

1.1.2 2023-05-02 16:36 UTC

This package is not auto-updated.

Last update: 2024-10-01 23:18:59 UTC


README

html2text是一个非常简单的脚本,它使用DOM方法将HTML转换为类似于浏览器渲染的格式 - 对于需要快速文本表示的地方非常适用。例如

<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>

将转换为

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)

查看原始博客文章或相关的StackOverflow答案

安装

您可以使用Composer将此添加到您的项目中

{
  "require": {
    "soundasleep/html2text": "~1.1"
  }
}

然后您可以非常简单地使用它

$text = \Soundasleep\Html2Text::convert($html);

您也可以包含提供的html2text.php并使用$text = convert_html_to_text($html);代替。

选项

将选项作为convert的第二个参数传递,例如

$options = array(
  'ignore_errors' => true,
  // other options go here
);
$text = \Soundasleep\Html2Text::convert($html, $options);

测试

tests/目录中提供了一些非常基本的测试。运行它们使用composer install && vendor/bin/phpunit

故障排除

找不到类'DOMDocument'

您需要为您的PHP版本安装PHP XML扩展。例如:apt-get install php7.4-xml

许可证

html2text根据MIT许可证授权,适用于Eclipse和GPL项目。

其他版本

还可以查看html2text_ruby,Ruby实现。