Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oddhill/php-html-unicode

Convert html tags to unicode chars. Written in php.
https://github.com/oddhill/php-html-unicode

Last synced: 23 days ago
JSON representation

Convert html tags to unicode chars. Written in php.

Awesome Lists containing this project

README

        

### PHP helper functions to convert html tags to unicode chars.

This is a PHP-port from the examples in the comments here: https://code.google.com/p/google-diff-match-patch/wiki/Plaintext

#### Usage
```php
$htmlUnicode = new HtmlUnicode;
$plain = $htmlUnicode->html2plain($html);
$html = $htmlUnicode->plain2html($plain);
```