Answers for "remove all html tags from string php"

PHP
1

remove html tags from string php

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

remove html tags php

// using strip_tags and str_replace for REMOVE all html TAGS in php
$text = '<p>Hello world.</p><!-- Comment --> <a href="https://learn-tech-tips.blogspot.com">Zidane</a>';
echo strip_tags($text);

//Hello world. Zidane

$short_description = strip_tags(str_replace("&nbsp;", " ", $short_description));
echo $short_description
  
  
// Allow <p> and <a>
echo strip_tags($text, '<p><a>');  

// <p>Hello world.</p><a href="https://learn-tech-tips.blogspot.com">Zidane</a>
Posted by: Guest on November-09-2020
2

remove html from string php

echo strip_tags("Hello <b>world!</b>");
Posted by: Guest on May-18-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 php"

Browse Popular Code Answers by Language