Skip to content

Instantly share code, notes, and snippets.

@canaytekin
Created January 8, 2014 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canaytekin/ce75ea90036f1f55458e to your computer and use it in GitHub Desktop.
Save canaytekin/ce75ea90036f1f55458e to your computer and use it in GitHub Desktop.
function html2txt($document){
$search = array('@<script[^>]*?>.*?</script>@si',
'@<[\/\!]*?[^<>]*?>@si',
'@<style[^>]*?>.*?</style>@siU',
'@<![\s\S]*?--[ \t\n\r]*>@'
);
$text = preg_replace($search, '', $document);
return $text;
}
function html2txt2($document){
$search = array('@<script[^>]*?>.*?</script>@si',
'@<style[^>]*?>.*?</style>@siU',
'@<![\s\S]*?--[ \t\n\r]*>@'
);
$text = preg_replace($search, '', $document);
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment