/ Published in: PHP
URL: http://sb2.info/php-script-html-plain-text-convert/
Expand |
Embed | Plain Text
function html2text($html) { 0 => '~<h[123][^>]+>~si', 1 => '~<h[456][^>]+>~si', 2 => '~<table[^>]+>~si', 3 => '~<tr[^>]+>~si', 4 => '~<li[^>]+>~si', 5 => '~<br[^>]+>~si', 6 => '~<p[^>]+>~si', 7 => '~<div[^>]+>~si', ); // reducing spaces // reducing newlines return $html; }
You need to login to post a comment.
