在Striptags对面的Php

时间:2015-07-21 22:15:19

标签: php html function tags

是否可以从字符串中删除除标签之外的所有内容?

E.g.: "<br>Hello World!</br>" --> "<br></br>"

是否有内置功能?

1 个答案:

答案 0 :(得分:0)

是。是的。

preg_match_all('/<*?>(.*?)<\/*?>/', $html, $result);
echo implode("", $result);