2017 © Pedro Peláez
 

library htmltotext

A PHP class to convert HTML into a plain text format

image

apt142/htmltotext

A PHP class to convert HTML into a plain text format

  • Thursday, July 17, 2014
  • by apt142
  • Repository
  • 1 Watchers
  • 2 Stars
  • 4,433 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 83 Forks
  • 0 Open issues
  • 3 Versions
  • 9 % Grown

The README.md

HtmlToText

Build Status Latest Stable Version Total Downloads License, (*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 div
within a 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();

The Versions

17/07 2014

dev-master

9999999-dev https://github.com/apt142/HtmlToText

A PHP class to convert HTML into a plain text format

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Cris Bettis

email php html text

30/05 2014

0.1.1

0.1.1.0 https://github.com/soundasleep/html2text

A PHP script to convert HTML into a plain text format

  Sources   Download

EPL-1.0

The Requires

  • php >=5.3.2

 

email php html text

16/05 2014

0.1.0

0.1.0.0 https://github.com/soundasleep/html2text

A PHP script to convert HTML into a plain text format

  Sources   Download

EPL-1.0

The Requires

  • php >=5.3.2

 

email php html text