Skip to content

Instantly share code, notes, and snippets.

@ozkanozcan
Created August 17, 2012 11:16
Show Gist options
  • Save ozkanozcan/3378071 to your computer and use it in GitHub Desktop.
Save ozkanozcan/3378071 to your computer and use it in GitHub Desktop.
PHP function html temizleme
function html2txt($t)
{
$s = array('@<script[^>]*?>.*?</script>@si',
'@<style[^>]*?>.*?</style>@siU',
'@<[\/\!]*?[^<>]*?>@si',
'@<![\s\S]*?--[ \t\n\r]*>@'
);
$a = preg_replace($s, '', $t);
return $a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment