Главная > PHP > php strip_tags удалить теги style

php strip_tags удалить теги style

function clean_notes($text){
	$text=preg_replace("'<style[^>]*?>.*?</style>'si","",$text);
	$text=trim(strip_tags($text));
	if(strlen($text)>0){
		return '<p>'.$text.'</p>';
	}
	return '';
}
Categories: PHP Tags:
  1. Пока что нет комментариев.
Похожие публикации