Answers for "strip_tags 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
0

php remove html tags

<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
//Test paragraph. Other text

// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
//<p>Test paragraph.</p> <a href="#fragment">Other text</a>
// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>
Posted by: Guest on June-12-2020
0

strip html tag php

$text = '<a href="https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=ed2438b9-d7f4-45be-b3d8-8c924068c18a&amp;ccId=2036080543_6069&amp;jobId=329838&amp;source=CC2&amp;lang=en_US">https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=ed2438b9-d7f4-45be-b3d8-8c924068c18a&amp;ccId=2036080543_6069&amp;jobId=329838&amp;source=CC2&amp;lang=en_US</a>';
Posted by: Guest on May-25-2021
0

strip html tag php

$text = '<p>Test paraagraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
Posted by: Guest on May-25-2021

Browse Popular Code Answers by Language