Answers for "strip pre tags php"

PHP
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
0

show html string in p tag

const str = `<div>
  <p>1st p tag</p>
  <p>2nd p tag</p>
</div>`

let doc = new DOMParser().parseFromString(str, 'text/html')

console.log(
  doc.querySelector('p').textContent
)
Posted by: Guest on November-25-2020

Browse Popular Code Answers by Language