Return to Snippet

Revision: 30218
at August 10, 2010 06:42 by sales2u


Initial Code
function html2txt($document){
     $search = array('@<script[^>]*?>.*?</script>@si', // Strip out javascript
     '@<style[^>]*?>.*?</style>@siU', // Strip style tags properly
     '@<[?]php[^>].*?[?]>@si', //scripts php
     '@<[?][^>].*?[?]>@si', //scripts php
     '@<[\/\!]*?[^<>]*?>@si', // Strip out HTML tags
     '@<![\s\S]*?--[ \t\n\r]*>@' // Strip multi-line comments including CDATA
     );$text = preg_replace($search, '', $document);
     return $text;
}

$html_source = file_get_contents('http://www.phpsnippets.info');
$txt = html2txt($html_source);

Initial URL


Initial Description


Initial Title
Transformeer een website tot een tekst

Initial Tags


Initial Language
PHP