Answers for "how to ignore html tags in php"

PHP
2

remove html from string php

echo strip_tags("Hello <b>world!</b>");
Posted by: Guest on May-18-2020
0

php remove html tag wrap

$text = "<p><script>example text inside script.<script></p>";
echo strip_tags($text, '<script>');
Posted by: Guest on July-07-2020

Browse Popular Code Answers by Language