PHP code example of ph-7 / html-to-text
1. Go to this page and download the library: Download ph-7/html-to-text library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ph-7 / html-to-text example snippets
use PH7\HtmlToText\Convert;
$htmlCode = '<div><p><em>Some random paragraphs...</em></p></div>';
$this->html2Text = new Convert($htmlCode);
$plainText = $this->html2Text->getText();
echo $plainText;