假设我有以下代码,如何才能删除<p>
和</p>
的HTML标记?
由于
<p>This is the first line<br /> This is the second line with image <img src="1.jpg" /></p>
答案 0 :(得分:1)
您正在寻找str_replace功能。
混合 str_replace (混合 $ search ,混合 $ replace ,混合 $ subject [,int&amp; $ count ])
<?php
$str = '<p>This is the first line<br /> This is the second line with image <img src="1.jpg" /></p>'
echo str_replace(array('<p>', '</p>'), NULL, $str);
?>