Answers for "which function is used to remove html and php tags?"

PHP
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

Code answers related to "which function is used to remove html and php tags?"

Browse Popular Code Answers by Language