Answers for "remove all paragraph tag php"

PHP
3

remove html tags from string php

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

php remove span tags from string

echo $new_string = preg_replace('/<span[^>]+\>/i', '', $content);
Posted by: Guest on June-24-2020

Browse Popular Code Answers by Language