Answers for "remove all html tags from string in php"

PHP
1

remove html tags from string php

<?php
	echo strip_tags("Hello <b>world!</b>");
Posted by: Guest on June-03-2020
1

Remove all attributes from HTML tags in PHP

$text = '<div class="test"><p onmousemove="javascript:alert(1);">Clean <a href="#">text</a></p></div>';

$cleanText = preg_replace("/<([a-z][a-z0-9]*)[^>]*?(\/?)>/si",'<$1$2>', $text);
Posted by: Guest on January-14-2021

Code answers related to "remove all html tags from string in php"

Browse Popular Code Answers by Language